-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "isthereaburnban",
"version": "1.0.0",
"description": "Tells you if there is a burn ban",
"main": "index.js",
"dependencies": {
"@zeit/next-css": "^1.0.1",
"axios": "^0.21.1",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "22.4.3",
"body-parser": "^1.18.3",
"classnames": "^2.2.5",
"eslint-plugin-jest": "^21.17.0",
"express": "^4.16.3",
"geolocator": "^2.1.3",
"iplocation": "^5.0.1",
"is_js": "^0.9.0",
"isomorphic-unfetch": "^2.0.0",
"lru-cache": "^4.1.3",
"next": "^9.5.1",
"next-redux-wrapper": "^1.3.5",
"node-geocoder": "^3.22.0",
"now-env": "^3.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-no-ssr": "^1.1.0",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.2",
"redux-thunk": "^2.3.0",
"sitemap": "^1.13.0",
"slug": "^0.9.1",
"universal-cookie": "^2.1.5"
},
"devDependencies": {
"babel-eslint": "^8.2.5",
"babel-plugin-inline-react-svg": "^0.5.2",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"husky": "^0.14.3",
"jest": "22.0.1",
"lint-staged": "^7.2.0",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "16.2.0"
},
"scripts": {
"dev": "node server.js",
"vercel-dev": "vercel dev",
"build": "next build",
"start": "next start -p $PORT",
"test": "NODE_ENV=test jest",
"deploy": "vercel",
"deploy-live": "now && now alias && now isthereaburnban --safe",
"lint": "eslint --ext .js,.js .",
"fix": "eslint --ext .js,.js . --fix",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"keywords": [
"burn",
"ban",
"oklahoma"
],
"author": "Sam Carlton",
"license": "ISC"
}