forked from ngxs/store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.51 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "ngxs",
"version": "3.0.1",
"repository": {
"type": "git",
"url": "git+https://github.com/ngxs/store.git"
},
"keywords": [
"ngxs",
"redux",
"state",
"rxjs",
"angular",
"ngx",
"angular2",
"cqrs",
"store",
"state-mangement",
"event-stream"
],
"author": "Austin McDaniel",
"contributors": [
{
"name": "Danny Blue"
},
{
"name": "Leon Radley"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ngxs/store/issues"
},
"homepage": "https://github.com/ngxs/store#readme",
"packageScope": "@ngxs",
"packages": [
"packages/store",
"packages/logger-plugin",
"packages/devtools-plugin",
"packages/storage-plugin",
"packages/websocket-plugin",
"packages/form-plugin",
"packages/router-plugin"
],
"scripts": {
"// - Binaries": "Run against node_modules/.bin",
"ng": "ng",
"ts-node": "ts-node",
"prettier": "prettier",
"// - APPS": "Run Apps in dev and with packaged modules",
"start": "ng serve --aot",
"serve:integration": "ng serve --prod --app 1 #requires yarn package",
"// - BUILDING": "Run Apps in dev and with packaged modules",
"build": "yarn build:packages && ts-node tools/set-metadata",
"build:packages": "ts-node tools/package",
"build:integration": "ng build --prod --app 1 #requires yarn build",
"// - TESTING": "Test all modules",
"test": "ng test",
"test:integration": "ng test --app 1 #requires yarn build",
"// - CI": "Ci Testing",
"test:ci": "ng test --code-coverage --progress=false --single-run",
"test:ci:integration": "ng test --progress=false --app 1 --single-run && ng build --prod --progress=false --app 1",
"publish:dev": "ts-node tools/publish-dev-builds",
"publish:tagged": "ts-node tools/publish-tagged-builds",
"// - UTILS": "Utility Scripts",
"lint": "ng lint",
"docs": "typedoc packages/store/src --options typedoc.json",
"format": "prettier --write *.ts"
},
"private": true,
"devDependencies": {
"@angular/cli": "~1.7.3",
"@angular/common": "^6.0.0",
"@angular/compiler": "^6.0.0",
"@angular/compiler-cli": "^6.0.0",
"@angular/core": "^6.0.0",
"@angular/forms": "^6.0.0",
"@angular/http": "^6.0.0",
"@angular/language-service": "^6.0.0",
"@angular/platform-browser": "^6.0.0",
"@angular/platform-browser-dynamic": "^6.0.0",
"@angular/router": "^6.0.0",
"@commitlint/cli": "^6.1.3",
"@commitlint/config-conventional": "^6.1.3",
"@types/fs-extra": "^5.0.1",
"@types/googlemaps": "^3.29.2",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.2",
"@types/node": "~9.6.0",
"@types/semver": "^5.5.0",
"codelyzer": "^4.0.0",
"core-js": "^2.4.1",
"fs-extra": "^5.0.0",
"husky": "^0.15.0-rc.13",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~2.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"lint-staged": "^7.0.0",
"mock-socket": "^7.1.0",
"ng-packagr": "3.0.0-rc.1",
"prettier": "^1.8.2",
"rxjs": "^6.0.0",
"rxjs-compat": "^6.0.0",
"ts-node": "~5.0.1",
"tsickle": "^0.27.2",
"tslib": "^1.9.0",
"tslint": "^5.8.0",
"typedoc": "^0.11.1",
"typedoc-plugin-markdown": "^1.1.1",
"typescript": "~2.7.2",
"zone.js": "^0.8.26"
},
"dependencies": {
"npm-run-all": "^4.1.2"
}
}