forked from romabelka/basic-react-25-06
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 910 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 910 Bytes
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
{
"name": "basic-25-06",
"version": "0.1.0",
"private": true,
"dependencies": {
"jest-cli": "^20.0.4",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-addons-css-transition-group": "^15.6.2",
"react-day-picker": "^7.1.9",
"react-dom": "^16.4.1",
"react-scripts": "1.1.4",
"react-select": "^2.0.0-beta.6"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"prettier": "prettier --write \"**/*.js\"",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"husky": "^1.0.0-rc.6",
"lint-staged": "^7.1.0",
"prettier": "^1.12.1"
},
"lint-staged": {
"*.js": [
"npm run prettier",
"git add"
]
}
}