-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.65 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
{
"name": "ds2-tfjs",
"version": "1.0.0",
"description": "",
"main": "dist/lib/index.js",
"engines": {
"node": "8.*"
},
"dependencies": {
"@types/express": "^4.16.1",
"@types/shelljs": "^0.8.5",
"@types/emscripten": "^1.38.0",
"@types/node-fetch": "^2.5.2",
"@types/google-protobuf": "^3.7.2",
"@tensorflow/tfjs": "^1.2.11",
"@tensorflow/tfjs-node": "^1.2.11",
"express": "^4.16.1",
"google-protobuf": "^3.10.0",
"node-fetch": "^2.6.0",
"node-gles": "0.0.16",
"node-wav": "0.0.2",
"shelljs": "^0.8.3",
"typescript": "~3.5.3"
},
"devDependencies": {
"ts-protoc-gen": "^0.10.0",
"concurrently": "^4.1.0",
"nodemon": "^1.19.4",
"rollup": "^1.24.0",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-typescript2": "^0.21.1",
"tslint": "^5.20.0"
},
"scripts": {
"install": "tsc && npm run copy",
"build": "tsc && rollup -c && npm run copy",
"start": "node dist/server/index.js",
"watch:server": "tsc -w",
"watch:js": "rollup --config rollup.config.js --watch",
"dev": "concurrently --names \"serverjs,clientjs,server\" -c \"bgBlue.bold,bgMagenta.bold\" npm:watch:server npm:watch:js \"nodemon dist/server/index.js\"",
"lint": "tslint -p tslint-tsconfig.json -c tslint.json src/**/*.ts",
"copy": "node scripts/copy.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yhwang/ds2-tfjs.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/yhwang/ds2-tfjs/issues"
},
"homepage": "https://github.com/yhwang/ds2-tfjs#readme"
}