-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "beijing-hell",
"version": "0.1.0",
"description": "北京浮生记 2018 重制版",
"main": "index.js",
"author": "shadeofgod<zoubingwu@gmail.com>",
"license": "MIT",
"repository": {
"url": "https://github.com/shadeofgod/beijing-hell",
"type": "git"
},
"scripts": {
"start": "rm -rf ./dist/ && parcel index.html",
"build": "parcel build index.html --public-url /beijing-hell",
"deploy": "gh-pages -d dist"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"gh-pages": "^2.2.0",
"husky": "^3.1.0",
"parcel-bundler": "^1.12.4",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1"
},
"dependencies": {
"classnames": "^2.2.6",
"immer": "^5.0.0",
"reackt": "^0.3.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-draggable": "^4.1.0",
"react-jss": "^10.0.0",
"react-redux": "^7.1.3",
"redux": "^4.0.4"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"babel": {
"presets": [
"@babel/preset-react"
]
}
}