-
Notifications
You must be signed in to change notification settings - Fork 403
/
package.json
179 lines (179 loc) Β· 6.65 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
{
"name": "ngxs",
"version": "18.1.4",
"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"
},
{
"name": "Artur Androsovych"
}
],
"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"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/ngxs"
},
"scripts": {
"preinstall": "node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('You must use Yarn to install, not NPM')\"",
"postinstall": "husky install",
"// - Binaries": "Run against node_modules/.bin",
"ng": "nx",
"nx": "nx",
"ts-node": "ts-node",
"prettier": "prettier",
"start-test": "start-server-and-test",
"// - APPS": "Run Apps in dev and with packaged modules",
"start": "yarn serve:hmr:integration",
"serve:integration": "nx serve integration --configuration production #requires yarn package",
"serve:hmr:integration": "nx serve integration --aot --open --configuration hmr",
"serve:integration:static": "serve dist-integration -s -l 4200 --cors",
"serve:integration:ssr": "node dist-integration-server/main.js",
"// - BUILDING": "Run Apps in dev and with packaged modules",
"build": "yarn build:packages",
"postbuild": "yarn rollup -c rollup.config.mjs && node ./build/remove-dts.mjs && node ./build/copy-license.mjs",
"build:packages": "yarn nx run-many --target=build --all && ts-node tools/set-metadata",
"// - INTEGRATION BUILDS": "#requires yarn build",
"build:integration": "nx build integration --configuration production",
"build:integration:ssr": "yarn build:integration && nx server integration --configuration production",
"// - TESTING": "Test all modules #requires yarn build:packages",
"test:integration": "nx run integration:test --colors --run-in-band",
"test:types": "nx lint-types store",
"// - E2E": "E2E testing #requires yarn build:integration",
"cy:open": "cypress open",
"cy:open:ssr": "cross-env SSR=true cypress open",
"cy:run": "cypress run",
"cy:run:ssr": "cross-env SSR=true cypress run",
"cy:run:chrome": "yarn cy:run --browser chrome",
"cy:run:chromium": "yarn cy:run --browser chromium",
"e2e": "start-test serve:integration 4200 cy:open",
"e2e:ssr": "start-test serve:integration:ssr 4200 cy:open:ssr",
"e2e:chrome": "start-test serve:integration 4200 cy:run:chrome",
"e2e:chromium": "start-test serve:integration 4200 cy:run:chromium",
"// - CI": "CI Testing",
"test": "nx run-many --target=test --all",
"test:ci:e2e": "yarn start-test serve:integration:static 4200 cy:run",
"test:ci:integration": "cross-env CI=true nx run integration:test --colors --run-in-band && yarn build:integration",
"test:ci:integration:ssr": "cross-env CI=true yarn build:integration:ssr && yarn start-test serve:integration:ssr 4200 cy:run:ssr",
"bundlemon": "bundlemon --config .bundlemonrc.json; bundlemon --config .bundlemonrc.plugins.json; bundlemon --config .bundlemonrc.integration.json; echo .",
"publish:dev": "ts-node tools/publish-dev-builds",
"publish:tagged": "ts-node tools/publish-tagged-builds",
"// - UTILS": "Utility Scripts",
"format": "nx format:write",
"// - INTEGRATION": "Integration builds",
"integration:ng16": "cd integrations/hello-world-ng16 && yarn test:integration",
"integration:ng17": "cd integrations/hello-world-ng17 && yarn test:integration",
"integration:ng18": "cd integrations/hello-world-ng18 && yarn test:integration",
"version:integration": "npm-run-all build version:integration:*",
"version:integration:ng16": "cd integrations/hello-world-ng16 && yarn install --force && cd ../..",
"version:integration:ng17": "cd integrations/hello-world-ng17 && yarn install --force && cd ../..",
"version:integration:ng18": "cd integrations/hello-world-ng18 && yarn install --force && cd ../..",
"// - INTEGRATION END -": "----------",
"tutorials:install": "yarn --cwd tutorials/create-app/ install --frozen-lockfile --non-interactive"
},
"private": true,
"devDependencies": {
"@angular-devkit/build-angular": "18.0.7",
"@angular-devkit/core": "18.0.7",
"@angular-devkit/schematics": "18.0.7",
"@angular-devkit/schematics-cli": "18.0.7",
"@angular/animations": "18.0.6",
"@angular/cli": "18.0.7",
"@angular/common": "18.0.6",
"@angular/compiler": "18.0.6",
"@angular/compiler-cli": "18.0.6",
"@angular/core": "18.0.6",
"@angular/forms": "18.0.6",
"@angular/language-service": "18.0.6",
"@angular/platform-browser": "18.0.6",
"@angular/platform-browser-dynamic": "18.0.6",
"@angular/platform-server": "18.0.6",
"@angular/router": "18.0.6",
"@angular/ssr": "18.0.6",
"@commitlint/cli": "^17.6.0",
"@commitlint/config-conventional": "^17.6.0",
"@nrwl/tao": "19.4.1",
"@nx/eslint": "19.4.1",
"@nx/jest": "19.4.1",
"@nx/js": "19.4.1",
"@nx/workspace": "19.4.1",
"@schematics/angular": "18.0.7",
"@types/express": "^4.17.6",
"@types/jest": "29.4.4",
"@types/node": "18.19.30",
"@types/semver": "^7.2.0",
"@typescript-eslint/eslint-plugin": "7.5.0",
"@typescript-eslint/parser": "7.5.0",
"bundlemon": "1.4.0",
"core-js": "^3.6.5",
"cpx": "^1.5.0",
"cross-env": "^5.2.1",
"cypress": "^13.1.0",
"eslint": "8.57.0",
"eslint-plugin-expect-type": "0.3.0",
"express": "^4.17.1",
"husky": "^8.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-preset-angular": "14.1.1",
"lint-staged": "^13.0.0",
"mock-socket": "^8.1.0",
"ng-packagr": "18.0.0",
"npm-run-all": "^4.1.5",
"nx": "19.4.1",
"prettier": "3.2.5",
"rollup": "^4",
"rollup-plugin-dts": "^6.1.0",
"rxjs": "^7.4.0",
"serve": "^14.2.0",
"start-server-and-test": "^1.11.0",
"ts-jest": "29.1.1",
"ts-morph": "^21.0.1",
"ts-node": "^8.10.2",
"tslib": "^2.3.0",
"typescript": "5.4.4",
"zone.js": "0.14.0"
}
}