This repository has been archived by the owner on May 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.79 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
{
"name": "construction",
"version": "0.3.0",
"engines": {
"node": "12.2.x"
},
"private": true,
"devDependencies": {
"nodemon": "^2.0.3",
"standard": "^8.6.0",
"static-server": "^2.0.6"
},
"dependencies": {
"@project-r/styleguide": "^14.0.3",
"@project-r/template-newsletter": "^1.4.1",
"apollo-cache-inmemory": "^1.0.0",
"apollo-client": "^2.0.1",
"apollo-link-http": "^1.0.0",
"body-parser": "^1.18.2",
"d3-array": "^1.2.4",
"d3-collection": "^1.0.7",
"d3-color": "^1.4.1",
"d3-dsv": "^1.2.0",
"d3-ease": "^1.0.7",
"d3-format": "^1.2.1",
"d3-geo": "^1.12.1",
"d3-scale": "^2.1.2",
"d3-shape": "^1.3.7",
"d3-time": "^1.1.0",
"d3-time-format": "^2.3.0",
"d3-timer": "^1.0.10",
"dotenv": "^4.0.0",
"downshift": "^2.2.3",
"express": "^4.15.5",
"express-basic-auth": "^1.2.0",
"glamor": "^2.20.40",
"graphql": "^0.11.7",
"graphql-tag": "^2.5.0",
"isomorphic-unfetch": "^2.0.0",
"mdast-react-render": "^1.0.0",
"next": "^9.3.5",
"prop-types": "^15.7.2",
"querystring": "^0.2.0",
"react": "^16.8.6",
"react-apollo": "^2.0.0",
"react-dom": "^16.8.6",
"react-maskedinput": "^4.0.1",
"react-textarea-autosize": "^7.1.2",
"redux": "^3.7.2",
"scroll-into-view": "1.15.0",
"topojson": "^3.0.2",
"validator": "^13.7.0"
},
"scripts": {
"start": "NODE_ENV=production node server.js",
"build": "next build",
"heroku-postbuild": "npm run build",
"assets": "static-server assets --port 8000",
"dev": "nodemon --watch server --watch lib/routes.js server.js",
"standardize": "standard --fix 'src/**/*.js' 'pages/**/*.js'",
"cloc": "find . -name '*.js' -not -path \"./node_modules*\" -not -path \"./.next*\" | xargs wc -l"
}
}