-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.47 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "animalrealityexposed.com",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"lint": "eslint ."
},
"dependencies": {
"@emotion/core": "^10.0.21",
"@emotion/styled": "^10.0.17",
"@mdx-js/loader": "^1.5.1",
"@next/mdx": "^9.1.1",
"@zeit/next-css": "^1.0.1",
"apicache": "^1.5.2",
"bootstrap": "^4.3.1",
"emotion": "^10.0.17",
"express": "^4.17.1",
"haversine": "^1.1.1",
"isomorphic-unfetch": "^3.0.0",
"konva": "^4.0.16",
"next": "9.1.1",
"nprogress": "^0.2.0",
"pdf-image": "^2.0.0",
"react": "16.10.2",
"react-bootstrap": "^1.0.0-beta.14",
"react-dom": "16.10.2",
"react-konva": "^16.10.1-0",
"react-map-gl": "^5.0.12",
"redis": "^2.8.0",
"use-image": "^1.0.5",
"uuid": "^3.3.3"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.15.1",
"eslint-plugin-standard": "^4.0.1",
"husky": ">=1",
"lint-staged": ">=8",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}