forked from cofacts/rumors-site
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.05 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
{
"name": "rumors-site",
"version": "0.0.1",
"description": "Rumors list / creation UI, with server-side rendering",
"main": "index.js",
"author": "MrOrz",
"license": "MIT",
"scripts": {
"dev": "node server",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "NODE_ENV=test jest .",
"build": "docker build -t mrorz/rumors-site:latest .",
"build:staging": "docker build -t mrorz/rumors-site:staging .",
"build:next": "next build",
"init:autotrack": "autotrack -o static/$npm_package_config_autotrackFileName -p eventTracker,outboundLinkTracker,urlChangeTracker",
"start": "NODE_ENV=production node server.js",
"landing": "cp -R ../grants-landing-template/static/* static/"
},
"config": {
"autotrackFileName": "autotrack.custom.js"
},
"dependencies": {
"@zeit/next-css": "^1.0.0",
"babel-eslint": "^10.0.0",
"balloon-css": "^0.5.0",
"classnames": "^2.2.5",
"clipboard": "^2.0.4",
"dotenv": "^6.0.0",
"immutable": "^3.8.2",
"isomorphic-fetch": "^2.2.1",
"json-immutable": "^0.4.0",
"koa": "^2.4.1",
"koa-send": "^5.0.0",
"next": "^7.0.0",
"next-images": "^1.0.0",
"next-redux-wrapper": "^2.1.0",
"next-routes": "^1.4.1",
"normalize.css": "^8.0.0",
"nprogress": "^0.2.0",
"raw-loader": "^1.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-radio-group": "^3.0.2",
"react-redux": "^6.0.0",
"redux": "^4.0.0",
"redux-duck": "^1.0.2",
"redux-thunk": "^2.2.0",
"rollbar": "^2.3.8",
"string-similarity": "^3.0.0"
},
"devDependencies": {
"autotrack": "^2.4.1",
"babel-plugin-module-resolver": "^3.1.1",
"coveralls": "^3.0.0",
"eslint": "^5.0.0",
"eslint-config-prettier": "^3.0.0",
"eslint-import-resolver-babel-module": "^5.0.0-beta.0",
"eslint-plugin-flowtype": "^3.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.4.0",
"jest": "^23.0.0",
"prettier": "^1.8.2",
"redux-devtools-extension": "^2.13.2"
}
}