forked from salesforce/akita
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
193 lines (193 loc) · 7.79 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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
{
"name": "datorama",
"version": "0.0.1",
"private": true,
"license": "Apache-2.0",
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.22.0"
},
"scripts": {
"affected": "nx affected",
"affected:apps": "nx affected:apps",
"affected:build": "nx affected:build",
"affected:dep-graph": "nx affected:dep-graph",
"affected:e2e": "nx affected:e2e",
"affected:libs": "nx affected:libs",
"affected:lint": "nx affected:lint",
"affected:test": "nx affected:test",
"build": "nx build",
"build:all": "nx run-many --target=build --all",
"build:all:prod": "nx run-many --target=build --configuration=production --all",
"build:app:angular:akita-ecommerce": "nx build angular-ecommerce --with-deps",
"build:app:angular:akita-ecommerce:prod": "nx build angular-ecommerce --prod --with-deps",
"build:app:angular:akita-server-side-pagination": "nx build angular-akita-server-side-pagination --with-deps",
"build:app:angular:akita-server-side-pagination:prod": "nx build angular-akita-server-side-pagination --prod --with-deps",
"build:app:angular:akita-store-app": "nx build angular-store-app --with-deps",
"build:app:angular:akita-store-app:prod": "nx build angular-store-app --prod --with-deps",
"build:app:angular:akita-twitter-like": "nx build angular-twitter-like --with-deps",
"build:app:angular:akita-twitter-like:prod": "nx build angular-twitter-like --prod --with-deps",
"build:app:react:akita-app": "nx build react-akita-app --with-deps",
"build:app:react:akita-app:prod": "nx build react-akita-app --prod --with-deps",
"build:app:svelte:todo": "echo Nx doesn't support svelte, you're on your own!",
"build:apps": "run-s build:app:*:*",
"build:apps:prod": "run-s build:app:*:prod",
"build:lib:akita": "run-s \"nx build akita --prod --with-deps\" build:lib:akita-ng-schematics",
"build:lib:akita-ng-devtools": "nx build akita-ng-devtools --prod --with-deps",
"build:lib:akita-ng-entity-service": "nx build akita-ng-entity-service --prod --with-deps",
"build:lib:akita-ng-forms-manager": "nx build akita-ng-forms-manager --prod --with-deps",
"build:lib:akita-ng-router-store": "nx build akita-ng-router-store --prod --with-deps",
"build:lib:akita-ng-schematics": "yarn --cwd libs/akita-schematics run build",
"build:libs": "run-s build:lib:*",
"commit": "git-cz",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"dep-graph": "nx dep-graph",
"e2e": "nx e2e",
"e2e:app:angular:akita-ecommerce": "nx e2e angular-ecommerce-e2e",
"e2e:app:angular:akita-server-side-pagination": "nx e2e angular-akita-server-side-pagination-e2e",
"e2e:app:angular:akita-store-app": "nx e2e angular-store-app-e2e",
"e2e:app:angular:akita-twitter-like": "nx e2e angular-twitter-like-e2e",
"e2e:app:react:akita-app": "nx e2e react-akita-app-e2e",
"format": "nx format:write",
"format:check": "nx format:check",
"format:write": "nx format:write",
"help": "nx help",
"postinstall": "ngcc --properties es2015 browser module main --first-only",
"lint": "nx workspace-lint && nx lint",
"lint:all": "nx run-many --target=lint --all",
"nx": "nx",
"release:akita": "yarn --cwd libs/akita run standard-version",
"release:akita-entity-service": "yarn --cwd libs/akita-entity-service run standard-version",
"release:akita-ng-devtools": "yarn --cwd libs/akita-ng-devtools run standard-version",
"release:akita-ng-forms-manager": "yarn --cwd libs/akita-ng-forms-manager run standard-version",
"release:akita-ng-router-store": "yarn --cwd libs/akita-ng-router-store run standard-version",
"release:apps": "yarn --cwd apps run standard-version",
"serve:app:angular:akita-ecommerce": "run-p \"nx serve angular-ecommerce-server\" \"nx serve angular-ecommerce\"",
"serve:app:angular:akita-server-side-pagination": "nx serve angular-akita-server-side-pagination",
"serve:app:angular:akita-store-app": "nx serve angular-store-app",
"serve:app:angular:akita-twitter-like": "nx serve angular-twitter-like",
"serve:app:react:akita-app": "nx serve react-akita-app",
"serve:app:svelte:todo": "yarn --cwd apps/svelte-todo run start",
"start": "nx serve",
"test": "nx test",
"test:all": "run-s test:lib:*",
"test:lib:akita": "nx test akita",
"test:lib:akita-ng-devtools": "nx test akita-ng-devtools",
"test:lib:akita-ng-entity-service": "nx test akita-ng-entity-service",
"test:lib:akita-ng-forms-manager": "nx test akita-ng-forms-manager",
"test:lib:akita-ng-router-store": "nx test akita-ng-router-store",
"update": "nx migrate latest",
"workspace-schematic": "nx workspace-schematic"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,yml,json,md}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@angular/animations": "9.1.1",
"@angular/common": "9.1.1",
"@angular/compiler": "9.1.1",
"@angular/core": "9.1.1",
"@angular/forms": "9.1.1",
"@angular/platform-browser": "9.1.1",
"@angular/platform-browser-dynamic": "9.1.1",
"@angular/router": "9.1.1",
"@netbasal/content-loader": "^1.1.0",
"cookie-parser": "^1.4.5",
"core-js": "^3.6.5",
"cors": "^2.8.5",
"document-register-element": "1.14.3",
"express": "4.17.1",
"faker": "^4.1.0",
"helpful-decorators": "^2.0.6",
"lodash": "^4.17.15",
"morgan": "^1.10.0",
"ngx-infinite-scroll": "^8.0.2",
"ngx-take-until-destroy": "^5.4.0",
"ngx-toastr": "^12.0.1",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-loadable": "^5.5.0",
"react-router-dom": "5.1.2",
"recompose": "^0.30.0",
"rxjs": "6.4.0",
"schematics-utilities": "1.1.1",
"tslib": "^1.11.1",
"zone.js": "^0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.901.1",
"@angular-devkit/build-ng-packagr": "0.901.1",
"@angular-devkit/schematics": "^9.1.1",
"@angular/compiler-cli": "9.1.1",
"@angular/language-service": "9.1.1",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@nrwl/angular": "9.2.2",
"@nrwl/cypress": "9.2.2",
"@nrwl/eslint-plugin-nx": "9.2.2",
"@nrwl/express": "9.2.2",
"@nrwl/jest": "9.2.2",
"@nrwl/node": "9.2.2",
"@nrwl/react": "9.2.3",
"@nrwl/web": "9.2.2",
"@nrwl/workspace": "9.2.2",
"@testing-library/react": "9.4.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/express": "4.17.6",
"@types/faker": "^4.1.11",
"@types/jest": "25.2.1",
"@types/lodash": "^4.14.149",
"@types/morgan": "^1.9.0",
"@types/node": "^12.12.35",
"@types/react": "16.9.17",
"@types/react-dom": "16.9.4",
"@types/react-loadable": "^5.5.3",
"@types/react-router-dom": "5.1.4",
"@typescript-eslint/eslint-plugin": "2.27.0",
"@typescript-eslint/parser": "2.27.0",
"all-contributors-cli": "^6.14.1",
"codelyzer": "~5.2.2",
"commitizen": "^4.0.4",
"copyfiles": "^2.2.0",
"cypress": "^4.3.0",
"cz-conventional-changelog": "^3.1.0",
"dotenv": "8.2.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"husky": "^4.2.5",
"jest": "25.3.0",
"jest-localstorage-mock": "^2.4.0",
"jest-preset-angular": "8.1.3",
"lint-staged": "^10.1.3",
"ng-packagr": "^9.1.0",
"npm-run-all": "^4.1.5",
"prettier": "2.0.4",
"rimraf": "^3.0.2",
"standard-version": "^7.1.0",
"ts-jest": "25.3.1",
"ts-node": "~8.8.2",
"tslint": "6.1.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "3.2.4"
}
}