-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
94 lines (94 loc) · 2.87 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "entity-state",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/ngxs-labs/entity-state.git"
},
"license": "MIT",
"homepage": "https://github.com/ngxs-labs/entity-state#readme",
"bugs": {
"url": "https://github.com/ngxs-labs/entity-state/issues"
},
"keywords": [
"ngxs",
"redux",
"store",
"entity",
"state"
],
"scripts": {
"ng": "ng",
"lint": "ng lint",
"serve": "ng serve integration",
"build": "ts-node -O '{\"module\":\"commonjs\"}' ./tools/build",
"build:integration": "ng build integration",
"test": "ng test entity-state",
"test:integration": "ng test integration",
"format": "prettier --write \"{src,integration}/**/*.{ts,js,html,scss}\"",
"// - CI": "CI pipelines",
"entity:sonar": "yarn sonar",
"entity:lint": "yarn lint",
"entity:test": "yarn test",
"entity:integration": "yarn test:integration && yarn build:integration --prod",
"entity:build": "yarn build && yarn readme",
"entity:rollup": "yarn rollup",
"ci:pipelines": "cross-env CI=true npm-run-all entity:*",
"// - Utils": "Utilities",
"sonar": "ts-node ./tools/sonar",
"readme": "ts-node ./tools/copy-readme",
"rollup": "rollup -c rollup.config.js",
"bump": "ts-node ./tools/bump"
},
"private": true,
"dependencies": {
"@angular/animations": "10.2.3",
"@angular/common": "10.2.3",
"@angular/compiler": "10.2.3",
"@angular/core": "10.2.3",
"@angular/forms": "10.2.3",
"@angular/platform-browser": "10.2.3",
"@angular/platform-browser-dynamic": "10.2.3",
"@angular/router": "10.2.3",
"@ngxs/logger-plugin": "3.7.0",
"@ngxs/store": "3.7.0",
"core-js": "2.6.3",
"rxjs": "6.6.2",
"tslib": "^2.1.0",
"zone.js": "~0.11.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1002.0",
"@angular-devkit/build-ng-packagr": "~0.1002.0",
"@angular/cli": "10.2.0",
"@angular/compiler-cli": "10.2.3",
"@angular/language-service": "10.2.3",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jasmine": "3.6.2",
"@types/jasminewd2": "2.0.8",
"@types/node": "^14.11.8",
"codelyzer": "^6.0.1",
"cross-env": "^7.0.3",
"husky": "^4.3.8",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.2.3",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~3.3.0",
"karma-jasmine-html-reporter": "^1.5.4",
"lint-staged": "^10.5.3",
"ng-packagr": "^10.1.2",
"npm-run-all": "4.1.5",
"prettier": "^2.2.1",
"protractor": "~7.0.0",
"rollup": "^2.38.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"sonarjs": "1.0.0",
"ts-node": "^8.10.2",
"tslint": "~6.1.3",
"typescript": "3.9.7"
}
}