-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.35 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
{
"name": "ngrx-run",
"version": "0.0.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
"test": "jest",
"patch": "cd ./modules && npm version patch && cd ..",
"build": "ng build --prod && cp README.md ./dist/ngrx-run/README.md",
"publish": "npm publish ./dist/ngrx-run",
"ci": "npm run test && npm run patch && npm run build && npm run publish",
"lint": "ng lint"
},
"private": true,
"dependencies": {
"@angular/common": "~11.0.9",
"@angular/compiler": "~11.0.9",
"@angular/core": "~11.0.9",
"@angular/platform-browser": "~11.0.9",
"@angular/platform-browser-dynamic": "~11.0.9",
"@ngrx/store": "^11.0.0-rc.0",
"@ngrx/store-devtools": "^11.0.1",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1100.7",
"@angular/cli": "~11.0.7",
"@angular/compiler-cli": "~11.0.9",
"@angular/animations": "~11.0.9",
"@angular/router": "~11.0.9",
"@ngneat/spectator": "^7.1.0",
"@types/jest": "^26.0.20",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"jest": "^26.6.3",
"jest-preset-angular": "^8.3.2",
"ng-packagr": "^11.0.0",
"prettier": "^2.2.1",
"ts-jest": "^26.5.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.0.2"
},
"files": [
"dist"
]
}