forked from HannoverJS/website
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 740 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 740 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
{
"private": true,
"scripts": {
"precommit": "lint-staged",
"dev": "next",
"build": "next build",
"start": "next start -p 5000",
"heroku-postbuild": "npm run build"
},
"dependencies": {
"camelcase-keys": "^4.2.0",
"next": "^5.0.0",
"node-fetch": "^2.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-google-maps": "^9.4.5",
"react-markdown": "^3.2.2",
"recompose": "^0.26.0",
"rxjs": "^6.3.3",
"rxjs-compat": "^6.3.3",
"upath": "^1.1.0"
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"prettier": "^1.11.0"
},
"lint-staged": {
"*.js": [
"prettier --no-semi --single-quote --write",
"git add"
]
}
}