-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·77 lines (77 loc) · 2.45 KB
/
package.json
File metadata and controls
executable file
·77 lines (77 loc) · 2.45 KB
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": "crowd-questions",
"version": "0.0.1",
"description": "enable the crowd to post questions and show answers ",
"main": "index.js",
"scripts": {
"dev": "rollup -c -w & cd test && node test/server.js",
"dev:code": "rollup -c -w",
"dev:server": "cd test && node server.js",
"build": "rollup -c",
"now-build": "NODE_ENV=production rollup -c && cd test && next build",
"heroku-postbuild": "NODE_ENV=production rollup -c && cd test && next build",
"start": "NODE_ENV=production cd test && node server.js",
"deploy": "s3cmd sync --exclude '.DS_Store' --verbose --acl-public build/ s3://republik-assets/dynamic-components/crowd-questions/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orbiting/erbschaft.git"
},
"author": "",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/orbiting/erbschaft/issues"
},
"homepage": "https://github.com/orbiting/erbschaft#readme",
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"@orbiting/remark-preset": "^1.2.4",
"@project-r/styleguide": "^8.6.1",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link": "^1.2.13",
"apollo-link-http": "^1.5.16",
"apollo-link-ws": "^1.0.19",
"core-js": "^2.6.9",
"d3-array": "^1.2.4",
"d3-dsv": "^1.1.1",
"d3-format": "^1.4.1",
"d3-scale": "^2.2.2",
"d3-shape": "^1.3.5",
"d3-time-format": "^2.1.3",
"dotenv": "^6.2.0",
"downshift": "^2.2.3",
"express": "^4.17.1",
"file-loader": "^1.1.11",
"glamor": "^2.20.40",
"graphql": "^14.5.7",
"graphql-tag": "^2.10.1",
"gsheets": "^2.0.0",
"isomorphic-unfetch": "^3.0.0",
"mdast-react-render": "^1.2.0",
"next": "^9.1.1",
"raw-loader": "^0.5.1",
"react": "^16.9.0",
"react-apollo": "^2.5.8",
"react-dom": "^16.9.0",
"react-textarea-autosize": "^6.1.0",
"rollup": "^0.60.7",
"rollup-plugin-alias": "^1.5.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.2.0",
"subscriptions-transport-ws": "^0.9.16",
"topojson": "^3.0.2",
"unist-util-visit": "^1.4.1"
},
"dependencies": {
"d3-geo": "^1.11.6",
"react-icons": "^2.2.7",
"scroll-into-view": "^1.9.7"
}
}