-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 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
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
78
79
80
81
82
83
{
"name": "razzle",
"version": "0.1.0",
"private": true,
"homepage": "./",
"engines": {
"node": "12.18",
"npm": "6.14.5"
},
"dependencies": {
"@material-ui/core": "^4.9.12",
"@material-ui/icons": "^4.9.1",
"axios": "^0.19.2",
"classnames": "^2.2.6",
"express": "^4.17.1",
"express-favicon": "^2.0.1",
"formik": "^2.1.4",
"framer-motion": "^1.11.1",
"konva": "^7.0.3",
"material-design-icons": "^3.0.1",
"node-sass": "^4.14.1",
"notistack": "^0.9.16",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-konva": "^16.13.0-3",
"react-loadable": "^5.5.0",
"react-perfect-scrollbar": "^1.5.8",
"react-redux": "^7.2.0",
"react-rough": "^2.3.0",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"roughjs": "^4.3.1",
"socket.io": "^2.3.0",
"typescript": "~3.7.2",
"use-image": "^1.0.6",
"yup": "^0.28.4"
},
"devDependencies": {
"@types/classnames": "^2.2.10",
"@types/express": "^4.17.7",
"@types/jest": "^24.0.0",
"@types/lodash": "^4.14.156",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.9",
"@types/react-router-config": "^5.0.1",
"@types/react-router-dom": "^5.1.5",
"@types/yup": "^0.28.0",
"husky": "^4.2.5",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"scripts": {
"startd": "react-scripts start",
"start": "node ./server/server.js",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}