-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.35 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.35 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
{
"name": "electrode-react-redux",
"version": "0.0.1",
"description": "Sample Electrode based React Web Application",
"homepage": "",
"author": {
"name": "Devanathan Vs",
"email": "[email protected]",
"url": ""
},
"contributors": [],
"files": [
"server",
"src",
"lib",
"dist"
],
"main": "lib/server/index.js",
"keywords": [],
"repository": {
"type": "git",
"url": "https://gecgithub01.walmart.com/electrode-ReactRedux"
},
"engines": {
"node": ">= 4 <= 8",
"npm": ">= 3 <= 5"
},
"scripts": {
"build": "clap build",
"prod-start": "NODE_ENV=production clap -n -x electrode/build prod",
"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",
"prestart": "clap build",
"publish-static": "pronto-js -f \"dist/**/{*.js,*.css,*.woff,*.eot,*.ttf,*.jpg,*.jpeg,*.png,*.gif}\" -o \"config/assets.json\""
},
"dependencies": {
"@walmart/electrode-wml-app": "^2.0.0",
"electrode-archetype-react-app": "^5.0.2",
"electrode-auto-ssr": "^1.0.0"
},
"devDependencies": {
"electrode-archetype-react-app-dev": "^5.0.2"
},
"private": true
}