-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.04 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "iron-iot-lamp-server",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build-server": "rm -rf dist && babel src --ignore node_modules --copy-files --out-dir dist",
"build-client": "cd client && npm i && npm run build && cd .. && npm run copy-client",
"copy-client": "rm -rf dist/client && mkdir dist/client && cp -R client/build/ dist/client/build",
"build": "npm run build-server && npm run build-client",
"docker-build": "docker-compose build --force-rm",
"docker-start": "docker-compose up -d",
"docker-stop": "docker-compose down",
"docker-prep": "npm run docker-stop && npm run docker-build && npm run docker-start",
"start-docker": "npm run docker-prep && docker logs server_iron-iot-lamp_1 -f",
"start": "npm run build && ./scripts/start.sh",
"start-server": "npm run build-server && ./scripts/start.sh",
"local": "./scripts/start.local.sh",
"local-server": "./scripts/start.local-server.sh",
"deploy": "gcloud app deploy -q",
"deploy-tail-logs": "npm run deploy && gcloud app logs tail -s default",
"watch": "npm-watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ironman9967/iron-iot-lamp.git"
},
"author": "Tyson Hester",
"license": "ISC",
"bugs": {
"url": "https://github.com/ironman9967/iron-iot-lamp/issues"
},
"homepage": "https://github.com/ironman9967/iron-iot-lamp#readme",
"devDependencies": {
"npm-watch": "^0.3.0"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"good": "^7.3.0",
"hapi": "^17.1.1",
"inert": "^5.0.1",
"jwt-simple": "^0.5.1",
"lodash": "^4.17.4",
"node-fetch": "^1.7.3",
"obscure-email": "^1.0.7",
"rxjs": "^5.5.6"
},
"babel": {
"plugins": [
"transform-object-rest-spread",
"dynamic-import-node"
],
"presets": [
"env"
]
},
"watch": {
"local": {
"patterns": [
"src"
],
"extenstions": "js,json",
"quiet": true
}
}
}