-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.01 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
{
"name": "beat-the-traffic",
"version": "1.0.0",
"scripts": {
"build": "next build",
"cfn:lint": "cfn-lint validate ./deploy/**/*.yaml",
"deploy-prod": "now",
"deploy": "now -n traffic-cam out",
"dev": "node server/server-static-generation.js",
"export": "next build && NODE_ENV=production next export",
"now-build": "next build && NODE_ENV=production next export",
"now-start": "NODE_ENV=production NOW_DEPLOY=true node server/server.js",
"precommit": "npm run cfn:lint",
"aws-start": "NODE_ENV=production PORT=80 node server/server.js",
"start": "NODE_ENV=production node server/server-static-generation.js",
"static": "serve out"
},
"dependencies": {
"@turf/distance": "^5.1.5",
"axios": "^0.17.1",
"bezier-easing": "^2.0.3",
"body-parser": "^1.18.2",
"compression": "^1.7.1",
"express": "^4.16.2",
"express-basic-auth": "^1.1.4",
"express-http-to-https": "^1.1.3",
"express-rate-limit": "^2.11.0",
"geoip-lite": "^1.2.1",
"gsap": "^1.20.3",
"howler": "^2.0.8",
"immutable": "^3.8.2",
"lodash.minby": "^4.6.0",
"mongodb": "^3.0.2",
"next": "^10.2.3",
"next-redux-wrapper": "^1.3.5",
"prop-types": "^15.7.2",
"raf": "^3.4.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"screenfull": "^3.3.2",
"serve": "^6.4.8",
"smoothscroll-polyfill": "^0.4.0",
"styled-jsx": "^5.1.2"
},
"license": "MIT",
"devDependencies": {
"babel-eslint": "^8.2.1",
"cfn-create-or-update": "^1.2.0",
"cfn-lint": "^1.5.0",
"eslint": "^4.16.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"prettier": "^1.10.2",
"prettier-eslint": "^8.8.1"
}
}