-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 2.12 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": "ngxs-actions-executing",
"scripts": {
"start": "ng serve --port=4256",
"build": "ng build ngxs-actions-executing --configuration production && yarn copy-readme",
"copy-readme": "ts-node --project tsconfig.tools.json ./tools/copy-readme",
"release": "standard-version --release-as patch",
"build-integration": "ng build integration",
"test": "jest --config ./jest.config.js",
"test:ci": "jest --config ./jest.config.js --coverage",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --config ./jest.config.js",
"format": "prettier --write",
"lint": "tslint '{src,integration}/**/*.ts' --project tsconfig.json"
},
"dependencies": {
"@angular/animations": "^18.0.5",
"@angular/common": "^18.0.5",
"@angular/compiler": "^18.0.5",
"@angular/core": "^18.0.5",
"@angular/forms": "^18.0.5",
"@angular/platform-browser": "^18.0.5",
"@angular/platform-browser-dynamic": "^18.0.5",
"@angular/router": "^18.0.5",
"@ngxs/logger-plugin": "^18.0.0",
"@ngxs/store": "^18.0.0",
"bootstrap": "^4.3.1",
"core-js": "^3.6.0",
"rxjs": "^6.5.3",
"standard-version": "^9.5.0",
"tslib": "^2.0.0",
"zone.js": "~0.14.7"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.6",
"@angular/cli": "^18.0.6",
"@angular/compiler-cli": "^18.0.5",
"@angular/language-service": "^18.0.5",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-angular": "^8.1.0",
"@commitlint/config-conventional": "^8.2.0",
"@ngxs/devtools-plugin": "^18.0.0",
"@types/jest": "^29.4.0",
"codelyzer": "^6.0.0",
"colors": "^1.3.3",
"cypress": "^3.4.1",
"husky": "^3.1.0",
"jest": "^29.7.0",
"jest-preset-angular": "^14.1.1",
"lint-staged": "^9.2.5",
"ng-packagr": "^18.0.0",
"prettier": "^1.18.2",
"start-server-and-test": "^1.10.0",
"ts-node": "^8.3.0",
"typescript": "~5.4.5"
}
}