-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.51 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
{
"name": "node-dc-ssr-electrode",
"version": "0.0.1",
"description": "Node-DC SSR workload based on Electrode",
"homepage": "",
"author": {
"name": "Enrico Galli",
"email": "[email protected]",
"url": ""
},
"contributors": [],
"files": [
"server",
"client",
"test"
],
"main": "lib/server/index.js",
"keywords": [],
"repository": {
"type": "git",
"url": "Node-DC/Node-DC-SSR-electrode"
},
"license": "Apache-2.0",
"engines": {
"node": ">= 4 <= 8",
"npm": ">= 3 <= 5"
},
"scripts": {
"prestart": "clap build",
"start": "if test \"$NODE_ENV\" = \"production\"; then npm run prod; else clap dev; fi",
"test": "clap check",
"coverage": "clap check",
"prod": "echo 'Starting standalone server in PROD mode'; NODE_ENV=production node ./lib/server/",
"heroku-postbuild": "clap build"
},
"dependencies": {
"argparse": "^1.0.9",
"bluebird": "^3.4.6",
"electrode-archetype-react-app": "^3.0.0",
"electrode-confippet": "^1.0.0",
"electrode-react-webapp": "^1.1.0",
"electrode-redux-router-engine": "^1.2.2",
"electrode-server": "^1.0.0",
"electrode-static-paths": "^1.0.0",
"lodash": "^4.10.1",
"material-ui": "^0.18.7",
"python-format": "^1.0.2",
"random-seed": "^0.3.0",
"random-words": "0.0.1",
"react-tap-event-plugin": "^2.0.1"
},
"devDependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"electrode-archetype-react-app-dev": "^3.0.0",
"xclap": "^0.2.0"
}
}