-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 KB
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
{
"name": "danmakucraft2",
"private": true,
"scripts": {
"clean": "rm -rf dist build"
},
"repository": "git+https://github.com/yehzhang/DanmakuCraft2.git",
"author": "Simon Zhang <simonzhangintp@gmail.com>",
"license": "AGPL-3.0+",
"bugs": {
"url": "https://github.com/yehzhang/DanmakuCraft2/issues"
},
"homepage": "https://github.com/yehzhang/DanmakuCraft2#readme",
"devDependencies": {
"@types/node": "^14.0.6",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsdoc": "^25.4.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"nodemon": "^2.0.4",
"prettier": "2.0.5",
"terser-webpack-plugin": "^3.0.2",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx,d.ts,json}": [
"eslint --fix --max-warnings=0"
]
}
}