-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1023 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
{
"name": "wunderbar-webapp",
"version": "0.1.0",
"private": true,
"dependencies": {
"bodymovin": "^4.11.1",
"docdash": "^0.4.0",
"google-map-react": "^0.24.0",
"husky": "^0.14.3",
"jsdoc": "^3.5.5",
"jwt-simple": "^0.5.1",
"lint-staged": "^4.2.1",
"materialize-css": "^0.100.2",
"prettier": "^1.7.0",
"prop-types": "^15.6.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-facebook-login": "^3.7.2",
"react-google-login": "^3.0.2",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.13",
"react-styleguidist": "^6.0.31"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}