-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 1.13 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
{
"name": "smart.water.service",
"version": "1.0.0",
"description": "smart.water.service",
"main": "index.ts",
"scripts": {
"test": "parcel build src/index.ts --out-dir dist",
"start": "parcel serve index.html -p 1256 --open",
"lint": "tslint -p tsconfig.json",
"build": "cross-env NODE_ENV=production parcel build src/index.ts --detailed-report --out-dir build --out-file index.js --no-source-maps",
"build:node": "cross-env NODE_ENV=production parcel build src/index.ts --target node --detailed-report --out-dir build --out-file node.js",
"build:ngzip": "tsc -p tsconfig.json --outDir build/tar/ws && gulp ngzip",
"publish:release": "tsc -p tsconfig.json --outDir build/tar/ws"
},
"keywords": [],
"author": "meng",
"license": "ISC",
"devDependencies": {
"cross-env": "^5.2.0",
"gulp": "^3.9.1",
"gulp-gzip": "^1.4.2",
"gulp-tar": "^2.1.0",
"parcel-bundler": "^1.12.3",
"tslint": "^5.12.1",
"typescript": "^2.8.1"
},
"dependencies": {
"es6-promise": "^4.2.4",
"water-service": "file:build",
"water-test": "http://172.23.7.135:8181/water.service.tar.gz"
}
}