forked from thisdot/angular-tensorflow-snake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.51 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "angular-tensorflow-snake",
"version": "0.0.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:once": "ng test --watch=false",
"test:coverage": "ng test --watch=false --code-coverage",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"compodoc:build": "npm run uml:overview && compodoc -p tsconfig.doc.json",
"compodoc:build-and-serve": "npm run uml:overview && compodoc -p tsconfig.doc.json -s",
"compodoc:serve": "compodoc -s",
"uml:overview": "tplant --input src/**/*[!(.spec)].ts -A --project tsconfig.app.json --output documentation_assets/diagram.svg",
"uml:game-service": "tplant --input src/**/*[!(.spec)].ts -A --project tsconfig.app.json --targetClass GameServiceBase --output documentation_assets/game-service-diagram.svg"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.0.0-next.4",
"@angular/cdk": "^16.0.0-next.2",
"@angular/common": "^16.0.0-next.4",
"@angular/compiler": "^16.0.0-next.4",
"@angular/core": "^16.0.0-next.4",
"@angular/forms": "^16.0.0-next.4",
"@angular/platform-browser": "^16.0.0-next.4",
"@angular/platform-browser-dynamic": "^16.0.0-next.4",
"@angular/router": "^16.0.0-next.4",
"@compodoc/compodoc": "^1.1.19",
"@tensorflow-models/hand-pose-detection": "2.0.0",
"@tensorflow/tfjs": "3.8.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.0.0-next.5",
"@angular-eslint/builder": "15.2.1",
"@angular-eslint/eslint-plugin": "15.2.1",
"@angular-eslint/eslint-plugin-template": "15.2.1",
"@angular-eslint/template-parser": "15.2.1",
"@angular/cli": "~16.0.0-next.5",
"@angular/compiler-cli": "^16.0.0-next.4",
"@types/jasmine": "~4.3.0",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"jasmine-core": "~4.5.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"karma-mocha-reporter": "^2.2.5",
"prettier": "^2.8.4",
"prettier-eslint": "^15.0.1",
"typescript": "~4.9.4",
"tplant": "^3.1.0"
}
}