-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 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
33
34
35
36
37
38
39
40
41
42
{
"name": "tfjs-examples-mnist",
"version": "0.1.0",
"description": "",
"main": "index.js",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": ">=8.9.0"
},
"dependencies": {
"@tensorflow/tfjs": "1.1.0",
"@types/d3": "^5.7.0",
"@types/jquery": "^3.3.29",
"@types/stats": "^0.16.30",
"@types/three": "^0.93.17",
"d3": "^5.9.1",
"dat.gui": "^0.7.5",
"jquery": "^3.5.0",
"material-design-lite": "^1.3.0",
"stats-js": "^1.0.0",
"three": "^0.100.0",
"three-shaders": "^1.0.16",
"trie-prefix-tree": "^1.5.0"
},
"scripts": {
"watch": "cross-env NODE_ENV=development parcel index.html input.html --no-hmr --open",
"build": "cross-env NODE_ENV=production parcel build index.html input.html --no-minify --public-url ./",
"link-local": "yalc link"
},
"devDependencies": {
"babel-plugin-transform-runtime": "~6.23.0",
"babel-polyfill": "~6.26.0",
"babel-preset-env": "~1.6.1",
"clang-format": "~1.2.2",
"cross-env": "~5.1.6",
"dexie": "^2.0.4",
"parcel-bundler": "^1.12.3",
"typescript": "^3.0.3",
"yalc": "~1.0.0-pre.22"
}
}