-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
70 lines (70 loc) · 2.11 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
67
68
69
70
{
"name": "ngxs-example-app",
"version": "0.0.0",
"scripts": {
"cli": "ng",
"precommit": "lint-staged",
"format": "prettier --write \"**/*.{ts,js}\"",
"start": "node server.js",
"serve": "yarn run cli serve",
"serve:aot": "yarn run cli serve --prod",
"test": "jest -c jest.config.js --watch",
"build:prod": "yarn cli build --prod"
},
"private": true,
"dependencies": {
"@angular/animations": "^10.1.6",
"@angular/cdk": "^10.2.5",
"@angular/cli": "^10.1.7",
"@angular/common": "^10.1.6",
"@angular/compiler": "^10.1.6",
"@angular/compiler-cli": "^10.1.6",
"@angular/core": "^10.1.6",
"@angular/forms": "^10.1.6",
"@angular/material": "^10.2.5",
"@angular/platform-browser": "^10.1.6",
"@angular/platform-browser-dynamic": "^10.1.6",
"@angular/router": "^10.1.6",
"@ngxs/devtools-plugin": "^3.7.0",
"@ngxs/logger-plugin": "^3.7.0",
"@ngxs/router-plugin": "^3.7.0",
"@ngxs/storage-plugin": "^3.7.0",
"@ngxs/store": "^3.7.0",
"core-js": "^3.6.5",
"rxjs": "^6.6.3",
"tslib": "^2.0.0",
"typescript": "~4.0.3",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1001.7",
"@angular/language-service": "^10.1.6",
"@babel/core": "^7.12.3",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jasmine": "^3.5.14",
"@types/jasminewd2": "^2.0.8",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.10",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.5.2",
"codelyzer": "^6.0.1",
"husky": "^4.3.0",
"jasmine-core": "~3.6.0",
"jasmine-marbles": "^0.6.0",
"jasmine-spec-reporter": "~6.0.0",
"jest": "^26.5.3",
"jest-preset-angular": "^8.3.1",
"karma": "~5.2.3",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"lint-staged": "^10.4.2",
"ngx-mock-provider": "^1.0.6",
"prettier": "^2.1.2",
"protractor": "~7.0.0",
"ts-node": "^9.0.0",
"tslint": "~6.1.0"
}
}