-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.42 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
{
"name": "mind-net.js",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build && cp ./dist/index.html ./dist/404.html",
"watch": "ng build --watch --configuration development",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"lib": "npm run test && webpack && mv ./lib/neural-network.d.ts ./lib/main.d.ts && cp ./README.md ./lib/"
},
"type": "module",
"private": true,
"dependencies": {
"@angular/animations": "~16.1.6",
"@angular/common": "~16.1.6",
"@angular/compiler": "~16.1.6",
"@angular/core": "~16.1.6",
"@angular/forms": "~16.1.6",
"@angular/platform-browser": "~16.1.6",
"@angular/platform-browser-dynamic": "~16.1.6",
"@angular/router": "~16.1.6",
"@fortawesome/fontawesome-free": "^6.4.2",
"bootstrap": "5.0.2",
"jszip": "^3.8.0",
"pngjs": "^6.0.0",
"rxjs": "~6.6.0",
"text-graph.js": "^1.0.3",
"threads": "^1.7.0",
"tslib": "^2.6.1",
"zone.js": "~0.13.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.1.6",
"@angular/cli": "^16.1.6",
"@angular/compiler-cli": "~16.1.7",
"@types/jest": "^29.5.3",
"@types/jszip": "^3.4.1",
"@types/node": "^20.4.5",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "~5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
}