-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.27 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.27 KB
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
{
"name": "digit-recognition",
"version": "0.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"build-prod": "NODE_ENV=production webpack",
"stats": "webpack --profile --json >> stats.json",
"watch": "webpack --watch",
"serve": "webpack-dev-server --hot --inline"
},
"main": "./dist/main.js",
"author": {
"name": "Brendan McGuire",
"email": "brendan@bren.app",
"url": "https://github.com/MayorMonty"
},
"repository": {
"type": "git",
"url": "https://github.com/MayorMonty/digit-recognition"
},
"license": "MIT",
"devDependencies": {
"html-webpack-plugin": "^4.0.0-beta.5",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"source-map-loader": "^0.1.5",
"ts-loader": "^1.0.0",
"tslint": "^3.15.1",
"tslint-loader": "^2.1.5",
"typescript": "^3.4.3",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2",
"webpack-fail-plugin": "^1.0.5",
"workerize-loader": "^1.0.4"
},
"dependencies": {
"@tensorflow/tfjs": "^1.0.4",
"@tensorflow/tfjs-converter": "^1.0.4",
"@tensorflow/tfjs-data": "^1.0.4",
"@tensorflow/tfjs-layers": "^1.0.4",
"brain": "^1.0.0",
"brain.js": "^1.6.1",
"workerize": "^0.1.7"
}
}