forked from ngxs-labs/actions-executing
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.06 KB
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
{
"name": "ngxs-actions-executing",
"scripts": {
"start": "ng serve --port=4256",
"build": "ng build ngxs-actions-executing && ts-node --project tsconfig.tools.json ./tools/copy-readme",
"bump": "ts-node --project tsconfig.tools.json ./tools/bump",
"build-integration": "ng build integration",
"test": "jest --config ./jest.app.config.js",
"test:ci": "jest --config ./jest.app.config.js --coverage",
"format": "prettier --write",
"lint": "tslint '{src,integration}/**/*.ts' --project tsconfig.json"
},
"dependencies": {
"@angular/animations": "^8.2.11",
"@angular/common": "^8.2.11",
"@angular/compiler": "^8.2.11",
"@angular/core": "^8.2.11",
"@angular/forms": "^8.2.11",
"@angular/platform-browser": "^8.2.11",
"@angular/platform-browser-dynamic": "^8.2.11",
"@angular/router": "^8.2.11",
"@ngxs/logger-plugin": "^3.5.1",
"@ngxs/store": "^3.5.0",
"bootstrap": "^4.3.1",
"core-js": "^3.6.0",
"rxjs": "^6.5.3",
"tslib": "^1.10.0",
"zone.js": "^0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.803.1",
"@angular-devkit/build-ng-packagr": "^0.803.1",
"@angular/cli": "^8.3.1",
"@angular/compiler-cli": "^8.2.3",
"@angular/language-service": "^8.2.14",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-angular": "^8.1.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/express": "^4.17.1",
"@types/jasmine": "^3.4.4",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.2",
"@types/semver": "^6.0.1",
"codelyzer": "^5.1.0",
"colors": "^1.3.3",
"cypress": "^3.4.1",
"husky": "^3.1.0",
"jest": "^24.9.0",
"jest-preset-angular": "^8.0.0",
"lint-staged": "^9.2.5",
"ng-packagr": "^5.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"semver": "^6.3.0",
"start-server-and-test": "^1.10.0",
"ts-loader": "^6.0.4",
"ts-node": "^8.3.0",
"tsickle": "^0.37.1",
"tslib": "^1.10.0",
"tslint": "^5.19.0",
"tslint-sonarts": "^1.9.0",
"typescript": "~3.5.3"
}
}