-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.33 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
{
"name": "choo-minimal",
"version": "0.3.0",
"main": "bin/www",
"scripts": {
"start": "node bin/load-env per-env",
"start:production": "node bin/www",
"start:development": "parcel --port $PORT src/index.html",
"build": "node bin/load-env per-env",
"build:development": "parcel build --out-dir public src/index.html",
"build:production": "parcel build --public-url $(npm run public-url) --out-dir public src/index.html",
"server": "node bin/load-env per-env",
"server:development": "pm2 start server.config.js --only $PROCESS_NAME-dev",
"server:production": "pm2 start server.config.js --only $PROCESS_NAME",
"load-env": "node bin/load-env -p $ENV_VAR",
"public-url": "ENV_VAR=PUBLIC_URL npm run load-env"
},
"author": "Andrew Zappella",
"license": {
"type": "GPL-3.0",
"url": "https://opensource.org/licenses/GPL-3.0"
},
"dependencies": {
"choo": "^6.13.1",
"compression": "^1.7.3",
"cross-spawn": "^6.0.5",
"dotenv": "^6.2.0",
"dotenv-expand": "^4.2.0",
"express": "^4.16.4",
"from2-string": "^1.1.0",
"hyperstream": "^1.2.2",
"minimist": "^1.2.0",
"per-env": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"choo-devtools": "^2.5.1",
"parcel-bundler": "^1.12.0",
"pm2": "^3.3.1"
}
}