-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
43 lines (43 loc) · 952 Bytes
/
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
{
"name": "web-interview",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "react-scripts build",
"precommit": "lint-staged",
"server": "yarn json-server --watch ./data/data.json --port 3010",
"start": "yarn server & react-scripts start",
"test": "react-scripts test --env=jsdom"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --quiet",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"resolutions": {
"immer": "^8.0.1"
},
"dependencies": {
"json-server": "^0.16.3",
"node-sass": "^5.0.0",
"normalize.css": "^8.0.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"prettier-plugin-packagejson": "^2.2.9",
"react-scripts": "^4.0.1"
}
}