This repository has been archived by the owner on Oct 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
77 lines (77 loc) · 2.3 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "cf-worker-soul-soup",
"version": "1.0.0",
"main": "dist/worker.js",
"repository": "https://github.com/roojay520/cf-worker-soul-soup.git",
"author": "roojay <roojay520@gmail.com>",
"license": "MIT",
"scripts": {
"publish": "wrangler publish",
"lint": "eslint -c .eslintrc.js --fix **/*.js",
"clear": "rimraf ./dist",
"dev": "cross-env NODE_ENV=development webpack -c webpack.config.js --watch",
"build": "rimraf ./dist && cross-env NODE_ENV=production webpack -c webpack.config.js",
"prettier:fix": "prettier --write .",
"eslint": "eslint . --ext .ts,.tsx,.js",
"eslint:fix": "eslint . --fix --ext .ts,.tsx,.js",
"commit": "git-cz",
"release": "standard-version"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.js"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"eslint --fix --ext .ts,.tsx,.js",
"prettier --write ."
]
},
"dependencies": {
"itty-router": "^2.1.9"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@cloudflare/workers-types": "^2.0.0",
"@commitlint/cli": "^9.1.2",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/node": "^14.11.10",
"@types/rimraf": "^3.0.0",
"@types/standard-version": "^7.0.0",
"@types/typescript": "^2.0.0",
"@types/webpack": "^4.41.22",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"babel-loader": "^8.1.0",
"commitizen": "^4.2.1",
"commitlint-config-cz": "^0.13.2",
"cross-env": "^7.0.2",
"cz-customizable": "^6.3.0",
"eslint": "^7.11.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2",
"rimraf": "3.0.2",
"standard-version": "^9.0.0",
"typescript": "^4.0.3",
"webpack": "^5.1.3",
"webpack-cli": "^4.0.0"
}
}