-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "newapp",
"version": "0.1.0",
"private": true,
"dependencies": {
"enzyme": "^2.9.1",
"fontfaceobserver": "^2.0.13",
"husky": "^0.14.1",
"lint-staged": "^4.0.0",
"mobx": "^3.1.16",
"mobx-react": "^4.2.2",
"mobx-react-form": "^1.31.15",
"moment": "^2.18.1",
"polished": "^1.2.1",
"prettier": "^1.5.2",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"sanitize.css": "^5.0.0",
"styled-components": "^2.1.0",
"uuid": "^3.1.0",
"validatorjs": "^3.13.3"
},
"devDependencies": {
"mobx-react-devtools": "^4.2.15",
"react-scripts": "1.0.7"
},
"scripts": {
"precommit": "lint-staged",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"eslintConfig": {
"extends": "react-app"
}
}