-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 917 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
{
"name": "crucarpool",
"version": "0.1.0",
"private": true,
"dependencies": {
"firebase": "^4.4.0",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"prop-types": "^15.6.0",
"react": "^16.3.2",
"react-dnd": "^2.5.4",
"react-dnd-html5-backend": "^2.5.4",
"react-dom": "^16.3.2",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.13",
"semantic-ui-css": "^2.2.12",
"semantic-ui-react": "^0.77.1",
"uuid": "^3.1.0"
},
"lint-staged": {
"src/**/*{js,jsx,json,css}": [
"prettier --single-quote --no-semi --write",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^4.2.2",
"prettier": "^1.7.0"
}
}