-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
{
"name": "headlines-web",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"clean": "rm -rf .next",
"build": "next build",
"dev": "nodemon index.js",
"start": "NODE_ENV=production node --icu-data-dir=node_modules/full-icu index.js",
"prestart": "npm run build",
"lint": "eslint -c .eslintrc.json .",
"lint:fix": "eslint -c .eslintrc.json . --fix"
},
"pre-commit": "lint",
"dependencies": {
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"classcat": "^3.2.5",
"compression": "^1.7.1",
"express": "^4.16.2",
"fingerprintjs2": "^2.1.0",
"full-icu": "^1.2.0",
"helmet": "^3.9.0",
"isomorphic-unfetch": "^2.0.0",
"lru-cache": "^4.1.1",
"luxon": "^0.3.1",
"next": "^9.0.1",
"next-offline": "^3.3.8",
"next-routes": "^1.4.2",
"nprogress": "^0.2.0",
"prop-types": "^15.6.0",
"query-string": "^6.5.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-ga": "^2.6.0",
"react-modal": "^3.8.1",
"spdy": "^4.0.0",
"winston": "^2.4.0"
},
"engines": {
"node": ">8.9.0"
},
"devDependencies": {
"babel-eslint": "^8.1.2",
"eslint": "^4.14.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"pem": "^1.14.2",
"pre-commit": "^1.2.2"
}
}