-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
66 lines (66 loc) · 2.34 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": "^18.0.1",
"@angular/common": "^18.0.1",
"@angular/compiler": "^18.0.1",
"@angular/core": "^18.0.1",
"@angular/forms": "^18.0.1",
"@angular/platform-browser": "^18.0.1",
"@angular/platform-browser-dynamic": "^18.0.1",
"@angular/router": "^18.0.1",
"@ngrx/store": "^18.0.0",
"deepmerge": "^4.2.2",
"rxjs": "~7.8.1",
"tslib": "^2.6.2",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.2",
"@angular-eslint/builder": "18.0.1",
"@angular-eslint/eslint-plugin": "18.0.1",
"@angular-eslint/eslint-plugin-template": "18.0.1",
"@angular-eslint/schematics": "18.0.1",
"@angular-eslint/template-parser": "18.0.1",
"@angular/cli": "^18.0.1",
"@angular/compiler-cli": "^18.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": "^18.0.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.4",
"ts-node": "^10.8.1",
"typescript": "^5.4.5"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}