forked from btroncone/ngrx-store-localstorage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "ngrx-store-localstorage-root",
"version": "0.0.0",
"private": "true",
"scripts": {
"build_dist": "npm run clean && ng build lib --configuration production && npm run copy_lib_assets",
"clean": "rimraf dist",
"lint": "ng lint --fix",
"ng": "ng",
"pretest": "npm run lint",
"test": "nyc ts-node -O '{\"module\": \"commonjs\"}' node_modules/jasmine/bin/jasmine",
"prepare": "husky install",
"copy_lib_assets": "copyfiles README.md CHANGELOG.md LICENSE ./dist/lib/"
},
"dependencies": {
"@angular/animations": "^16.0.1",
"@angular/common": "^16.0.1",
"@angular/compiler": "^16.0.1",
"@angular/core": "^16.0.1",
"@angular/forms": "^16.0.1",
"@angular/platform-browser": "^16.0.1",
"@angular/platform-browser-dynamic": "^16.0.1",
"@angular/router": "^16.0.1",
"@ngrx/store": "^16.0.0",
"rxjs": "~7.5.5",
"ts-deepmerge": "^6.2.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.0.1",
"@angular-eslint/builder": "16.0.1",
"@angular-eslint/eslint-plugin": "16.0.1",
"@angular-eslint/eslint-plugin-template": "16.0.1",
"@angular-eslint/schematics": "16.0.1",
"@angular-eslint/template-parser": "16.0.1",
"@angular/cli": "^16.0.1",
"@angular/compiler-cli": "^16.0.1",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/jasmine": "~3.6.0",
"@types/node": "^18.16.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"copyfiles": "^2.4.1",
"crypto-js": "^4.0.0",
"es6-shim": "^0.35.6",
"eslint": "^8.39.0",
"husky": "^6.0.0",
"jasmine": "^3.10.0",
"jasmine-core": "~3.10.0",
"jasmine-spec-reporter": "^7.0.0",
"lint-staged": "^11.0.0",
"localstorage-polyfill": "^1.0.1",
"ng-packagr": "^16.0.1",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.4",
"ts-node": "^10.8.1",
"typescript": "^5.0.4"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}