forked from ngxs/store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
151 lines (151 loc) Β· 5.02 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "ngxs",
"version": "3.4.3",
"repository": {
"type": "git",
"url": "git+https://github.com/ngxs/store.git"
},
"keywords": [
"ngxs",
"redux",
"state",
"rxjs",
"angular",
"ngx",
"angular2",
"cqrs",
"store",
"state-management",
"event-stream"
],
"author": "Austin McDaniel",
"contributors": [
{
"name": "Danny Blue"
},
{
"name": "Leon Radley"
},
{
"name": "Mark Whitfeld"
},
{
"name": "Maxim Ivanov"
}
],
"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",
"packages/hmr-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 --open",
"serve:integration": "ng serve --prod --project integration #requires yarn package",
"serve:hmr:integration": "npm start -- --project integration --configuration hmr",
"// - 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:packages:watch": "ts-node tools/package --watch",
"build:integration": "ng run integration:build:production #requires yarn build",
"build:integration:ssr": "ng run integration:build:production && ng run integration:server:production #requires yarn build",
"// - TESTING": "Test all modules",
"test": "ng test",
"test:integration": "ng run integration:test #requires yarn build",
"test:integration:ssr": "ng run integration:test #requires yarn build",
"test:ssr:server": "cd integration && ts-node server.ts",
"test:ssr:script": "node ./node_modules/npm-delay 2000 && cd integration && ts-node test.ssr.ts",
"// - CI": "CI Testing",
"test:ci": "cross-env CI=true ng test --code-coverage --progress=false --project ngxs",
"test:ci:integration": "cross-env CI=true ng run integration:test --progress=false && ng run integration:build:production --progress=false",
"test:ci:integration:ssr": "cross-env CI=true ng run integration:build:production && ng run integration:server:production --progress=false && run-p test:ssr:*",
"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 \"{packages,integration}/**/*.ts\"",
"// - INTEGRATION": "Integration builds",
"integration:ng5": "cd integrations/hello-world-ng5 && npm test"
},
"private": true,
"devDependencies": {
"@angular-devkit/build-angular": "~0.13.1",
"@angular/animations": "7.1.4",
"@angular/cli": "7.3.6",
"@angular/common": "7.1.4",
"@angular/compiler": "7.1.4",
"@angular/compiler-cli": "7.1.4",
"@angular/core": "7.1.4",
"@angular/forms": "7.1.4",
"@angular/http": "7.1.4",
"@angular/language-service": "7.1.4",
"@angular/platform-browser": "7.1.4",
"@angular/platform-browser-dynamic": "7.1.4",
"@angular/platform-server": "7.1.4",
"@angular/router": "7.1.4",
"@angularclass/hmr": "^2.1.3",
"@commitlint/cli": "^7.1.3",
"@commitlint/config-conventional": "^7.1.0",
"@nguniversal/express-engine": "7.1.1",
"@nguniversal/module-map-ngfactory-loader": "7.0.2",
"@types/chai": "^4.1.7",
"@types/deep-freeze-strict": "^1.1.0",
"@types/express": "^4.16.0",
"@types/fs-extra": "^5.0.1",
"@types/jasmine": "~3.3.1",
"@types/jasminewd2": "~2.0.2",
"@types/mocha": "^5.2.5",
"@types/node": "^11.9.0",
"@types/semver": "^5.5.0",
"chai": "4.2.0",
"codelyzer": "^4.5.0",
"core-js": "^2.6.0",
"cross-env": "^5.2.0",
"fs-extra": "^7.0.0",
"husky": "^1.1.0",
"jasmine-core": "^3.3.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^4.0.1",
"karma-chrome-launcher": "~2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^2.0.0",
"karma-jasmine": "~2.0.1",
"karma-jasmine-diff-reporter": "^2.0.0",
"karma-jasmine-html-reporter": "^1.4.0",
"karma-mocha-reporter": "^2.2.5",
"lint-staged": "^8.0.0",
"mocha": "^6.0.0",
"mock-socket": "^8.0.5",
"ng-packagr": "^4.7.1",
"npm-delay": "^1.0.4",
"npm-run-all": "^4.1.2",
"prettier": "1.15.3",
"puppeteer": "^1.11.0",
"rxjs": "^6.0.0",
"ts-mocha": "^6.0.0",
"ts-node": "^8.0.3",
"tsickle": "^0.34.0",
"tslib": "^1.9.0",
"tslint": "^5.11.0",
"typedoc": "^0.14.0",
"typedoc-plugin-markdown": "^1.1.19",
"typescript": "~3.1.6",
"zone.js": "^0.8.26"
}
}