-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.15 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
{
"name": "my-electrode-app",
"version": "0.0.1",
"description": "First electrode app",
"homepage": "github.io",
"author": {
"name": "Miniroman",
"email": "[email protected]",
"url": ""
},
"contributors": [],
"files": [
"server",
"client",
"test"
],
"main": "server/index.js",
"keywords": [
"app"
],
"repository": {
"type": "git",
"url": "/my-electrode-app"
},
"license": "Apache-2.0",
"engines": {
"node": "5.12.x",
"npm": "3.10.x"
}
"scripts": {
"start": "if test \"$NODE_ENV\" = \"production\"; then npm run prod; else gulp dev; fi",
"test": "gulp test",
"coverage": "gulp check",
"prod": "echo 'Starting standalone server in PROD mode'; node .",
"heroku-postbuild": "gulp build"
},
"dependencies": {
"bluebird": "^3.4.6",
"electrode-archetype-react-app": "^1.0.0",
"electrode-confippet": "^1.0.0",
"electrode-redux-router-engine": "^1.2.2",
"electrode-server": "^1.0.0",
"electrode-static-paths": "^1.0.0",
"lodash": "^4.10.1"
},
"devDependencies": {
"electrode-archetype-react-app-dev": "^1.0.0",
"gulp": "^3.9.1"
}
}