-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.32 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": "electrode-app",
"version": "0.0.1",
"description": "",
"homepage": "",
"author": {
"name": "Tan Khay Ong",
"email": "[email protected]",
"url": ""
},
"contributors": [],
"files": [
"server",
"client",
"test"
],
"main": "lib/server/index.js",
"keywords": [],
"repository": {
"type": "git",
"url": "/Electrode App"
},
"license": "Apache-2.0",
"engines": {
"node": ">= 4 <= 8",
"npm": ">= 3 <= 5"
},
"scripts": {
"build": "clap build",
"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": {
"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"
},
"devDependencies": {
"babel-plugin-dynamic-import-node": "^1.0.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"electrode-archetype-react-app-dev": "^3.0.0"
}
}