-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"scripts": {
"build": "webpack --mode development",
"start": "python3 server.py",
"precommit": "NODE_ENV=production lint-staged"
},
"keywords": [],
"author": "",
"license": "ISC",
"lint-staged": {
"*.{js,jsx}": [
"pretty-quick --staged",
"eslint src/ --fix",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"husky": "^2.4.0",
"lint-staged": "^8.2.0",
"prettier": "^1.18.0",
"pretty-quick": "^1.11.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"@material-ui/core": "^4.0.2",
"@material-ui/icons": "^4.0.1",
"axios": "^0.19.0",
"peerjs": "^1.0.0",
"rc-progress": "^2.3.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"socket.io-client": "^2.2.0",
"uuid": "^3.3.2"
}
}