-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
45 lines (45 loc) · 1.43 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
{
"name": "ennui",
"version": "0.1.0",
"description": "Neural nework visualizer.",
"main": "app.ts",
"dependencies": {
"@tensorflow/tfjs": "^1.5.1",
"@tensorflow/tfjs-vis": "^0.4.0",
"@types/d3": "^5.7.2",
"@types/file-saver": "^2.0.1",
"common-js": "^0.3.8",
"d3": "^5.15.0",
"file-loader": "^3.0.1",
"file-saver": "^2.0.2",
"tfjs-cifar10-web": "^1.1.1",
"uglifycss": "0.0.29",
"uglifyjs": "^2.4.11",
"url-loader": "^1.1.2",
"webpack": "^4.41.5"
},
"devDependencies": {
"dragselect": "^1.13.1",
"node-sass": "^4.14.1",
"prettier": "^1.19.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.4",
"webpack-cli": "^3.3.10"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"scss": "node-sass src/ui -o src/ui",
"scss-watch": "node-sass --watch src/ui -o src/ui",
"ts-watch": "tsc --skipLibCheck --watch",
"webpack-watch": "webpack --watch --mode development",
"build": "tsc --skipLibCheck && webpack --mode development && node-sass src/ui -o src/ui",
"watch": "tsc --skipLibCheck && webpack --mode development && node-sass src/ui -o src/ui && tsc --skipLibCheck --watch & webpack --watch --mode development & node-sass --watch src/ui -o src/ui"
},
"repository": {
"type": "git",
"url": "https://github.mit.edu/jmmichel/ClientENNUI.git"
},
"author": "",
"license": "MIT"
}