forked from DeborahK/Angular-NgRx-GettingStarted
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.8 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
{
"name": "ng-state-management-comparison",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:sourcemap": "ng build --source-map",
"build:stats": "npm run build:sourcemap && source-map-explorer dist/**/*.js",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"pretty-quick": "pretty-quick"
},
"private": true,
"dependencies": {
"@angular/animations": "~17.0.3",
"@angular/common": "~17.0.3",
"@angular/compiler": "~17.0.3",
"@angular/core": "~17.0.3",
"@angular/forms": "~17.0.3",
"angular-in-memory-web-api": "^0.17.0",
"@angular/platform-browser": "~17.0.3",
"@angular/platform-browser-dynamic": "~17.0.3",
"@angular/router": "~17.0.3",
"@ngrx/effects": "^17.0.0-rc.0",
"@ngrx/store": "^17.0.0-rc.0",
"@ngrx/store-devtools": "^17.0.0-rc.0",
"bootstrap": "^4.4.1",
"rxjs": "~7.5.6",
"tslib": "^2.3.0",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~17.0.1",
"@angular/cli": "~17.0.1",
"@angular/compiler-cli": "~17.0.3",
"@types/jasmine": "~3.10.0",
"@types/node": "^12.11.1",
"jasmine-core": "~3.10.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"typescript": "~5.2.2",
"prettier": "^2.3.2",
"pretty-quick": "^2.0.1",
"husky": "^4.3.8",
"source-map-explorer": "^2.5.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}