forked from ngxs/store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
162 lines (162 loc) Β· 5.93 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
{
"name": "ngxs",
"version": "3.5.1",
"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"
],
"scripts": {
"preinstall": "node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('You must use Yarn to install, not NPM')\"",
"// - Binaries": "Run against node_modules/.bin",
"ng": "ng",
"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": "ng serve --prod --project integration #requires yarn package",
"serve:hmr:integration": "ng serve --aot --open --project integration --configuration hmr",
"serve:integration:static": "angular-http-server --path dist-integration -p 4200 --silent",
"serve:integration:ssr": "yarn ts-node integration/server",
"// - BUILDING": "Run Apps in dev and with packaged modules",
"build": "yarn build:packages",
"build:packages": "cd build && yarn build",
"build:packages:watch": "cd build && yarn build --watch",
"// - INTEGRATION BUILDS": "#requires yarn build",
"build:integration": "ng run integration:build:production",
"build:integration:ssr": "yarn build:integration && ng run integration:server:production",
"// - TESTING": "Test all modules #requires yarn build:packages",
"test": "ng test",
"test:integration": "ng run integration:test --colors --runInBand",
"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",
"test:types": "dtslint packages/store/types --localTs node_modules/typescript/lib",
"// - E2E": "E2E testing #requires yarn build:integration",
"cy:open": "cypress open --config integrationFolder=cypress/integration",
"cy:open:ssr": "cypress open --config integrationFolder=cypress/ssr",
"cy:run": "cypress run --config integrationFolder=cypress/integration",
"cy:run:ssr": "cypress run --config integrationFolder=cypress/ssr",
"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:ci": "cross-env CI=true ng test --project ngxs --colors --runInBand",
"test:ci:e2e": "yarn start-test serve:integration:static 4200 cy:run",
"test:ci:integration": "cross-env CI=true ng run integration:test --colors --runInBand && 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",
"publish:dev": "ts-node tools/publish-dev-builds",
"publish:tagged": "ts-node tools/publish-tagged-builds",
"// - UTILS": "Utility Scripts",
"lint": "ng lint",
"eslint": "eslint 'packages/**/*.ts'",
"bundlesize": "bundlesize --config bundlesize.config.json",
"format": "prettier --write \"**/*.{js,ts,html,css,scss,md,json,yml}\"",
"// - INTEGRATION": "Integration builds",
"integration:ng5": "cd integrations/hello-world-ng5 && yarn test",
"integration:ivy": "cd integrations/ivy && yarn test"
},
"private": true,
"devDependencies": {
"@angular-builders/jest": "^8.2.0",
"@angular-devkit/build-angular": "~0.803.8",
"@angular/animations": "8.2.10",
"@angular/cli": "8.3.8",
"@angular/common": "8.2.10",
"@angular/compiler": "8.2.10",
"@angular/compiler-cli": "8.2.10",
"@angular/core": "8.2.10",
"@angular/forms": "8.2.10",
"@angular/language-service": "8.2.10",
"@angular/platform-browser": "8.2.10",
"@angular/platform-browser-dynamic": "8.2.10",
"@angular/platform-server": "8.2.10",
"@angular/router": "8.2.10",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@cypress/webpack-preprocessor": "^4.1.0",
"@nguniversal/module-map-ngfactory-loader": "8.1.1",
"@types/express": "^4.17.1",
"@types/jest": "^24.0.18",
"@types/node": "^12.6.2",
"@types/semver": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"angular-http-server": "^1.9.0",
"bundlesize": "^0.18.0",
"codelyzer": "^5.1.2",
"core-js": "^3.2.1",
"cross-env": "^5.2.1",
"cypress": "^3.4.1",
"dtslint": "^0.9.8",
"eslint": "^6.5.1",
"express": "^4.17.1",
"husky": "^3.0.8",
"jest": "^24.9.0",
"jest-preset-angular": "^7.1.1",
"lint-staged": "^9.4.2",
"mock-socket": "^8.1.0",
"ng-packagr": "^5.7.0",
"npm-delay": "^1.0.4",
"npm-run-all": "^4.1.5",
"prettier": "1.18.2",
"rxjs": "^6.5.3",
"start-server-and-test": "^1.10.5",
"ts-loader": "^6.2.0",
"ts-node": "^8.4.1",
"tsickle": "^0.37.0",
"tslib": "^1.10.0",
"tslint": "^5.20.0",
"typescript": "~3.5.3",
"zone.js": "~0.10.2"
}
}