-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.68 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.68 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
48
49
50
51
52
53
54
55
56
57
{
"name": "tictactoejs",
"version": "1.8.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"buildprod": "ng build --configuration=production",
"build": "ng build",
"test": "ng test",
"test_no_ui": "ng test --browsers ChromeHeadless --watch=false --code-coverage",
"lint": "ng lint",
"e2e": "ng e2e",
"copysite": "xcopy /e /v /y .\\dist\\tictactoejs\\browser .\\docs\\",
"rmsite": "rimraf ./docs/",
"generatesite": "npm-run-all rmsite copysite"
},
"private": true,
"dependencies": {
"@angular/animations": "^20.1.7",
"@angular/common": "^20.1.7",
"@angular/compiler": "^20.1.7",
"@angular/core": "^20.1.7",
"@angular/forms": "^20.1.7",
"@angular/localize": "^20.1.7",
"@angular/platform-browser": "^20.1.7",
"@angular/platform-browser-dynamic": "^20.1.7",
"@angular/router": "^20.1.7",
"@ng-bootstrap/ng-bootstrap": "^19.0.0",
"@ngrx/store": "^20.0.0",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.2",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"rxjs": "^7.8.1",
"tslib": "^2.0.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^20.1.6",
"@angular/cli": "^20.1.6",
"@angular/compiler-cli": "^20.1.7",
"@types/jasmine": "~3.6.0",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~5.8.3"
}
}