-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
230 lines (230 loc) · 9.76 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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
{
"name": "srts.pw",
"version": "0.0.0",
"description": "A URL Shotner",
"license": "MIT",
"private": true,
"engines": {
"node": ">=12.16.0",
"npm": ">=6.13.0",
"yarn": ">=1.22.0"
},
"repository": {
"type": "git",
"url": "https://github.com/emjimadhu/srts.pw.git"
},
"bugs": "https://github.com/emjimadhu/srts.pw/issues",
"homepage": "https://github.com/emjimadhu/srts.pw/blob/develop/README.md",
"author": {
"email": "[email protected]",
"name": "Em Ji Madhu"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"start:all": "concurrently --names \"CLIENT,SERVER,ADMIN\" -c \"yellow.bold,yellow.bold,yellow.bold\" \"yarn start:client\" \"yarn start:server\" \"yarn start:admin\"",
"build:all": "yarn build:client && yarn build:server && yarn build:admin",
"lint:all": "yarn lint:workspace && yarn lint:tools && yarn lint:server && yarn lint:client && yarn lint:admin && yarn lint:server-environments && yarn lint:client-environments",
"start:server": "yarn substep:set-server-environment --environment=development && nx serve server --configuration=development",
"build:server": "yarn substep:set-server-environment --environment=production && nx build server --configuration=production",
"lint:server": "nx lint server",
"test:server": "nx test server",
"lint:server-urls": "nx lint server-urls",
"test:server-urls": "nx test server-urls",
"lint:server-user": "nx lint server-user",
"test:server-user": "nx test server-user",
"lint:server-core-mailer": "nx lint server-core-mailer",
"test:server-core-mailer": "nx test server-core-mailer",
"lint:server-ccommon-types": "nx lint server-ccommon-types",
"test:server-ccommon-types": "nx test server-ccommon-types",
"lint:server-auth": "nx lint server-auth",
"test:server-auth": "nx test server-auth",
"start:client": "yarn substep:set-client-environment --environment=development && nx serve client --configuration=development",
"build:client": "yarn substep:set-client-environment --environment=production && nx build client --configuration=production",
"lint:client": "nx lint client",
"test:client": "nx test client",
"start:admin": "nx serve admin --configuration=development",
"build:admin": "nx build admin --configuration=production",
"lint:admin": "nx lint admin",
"test:admin": "nx test admin",
"lint:client-component-header": "nx lint client-components-header",
"test:client-components-header": "nx test client-components-header",
"lint:client-component-create-link": "nx lint client-components-create-link",
"test:client-components-create-link": "nx test client-components-create-link",
"lint:client-component-link-preview": "nx lint client-components-link-preview",
"test:client-components-link-preview": "nx test client-components-link-preview",
"lint:client-pages-home": "nx lint client-pages-home",
"test:client-pages-home": "nx test client-pages-home",
"lint:client-pages-links": "nx lint client-pages-links",
"test:client-pages-links": "nx test client-pages-links",
"lint:client-pages-redirect": "nx lint client-pages-redirect",
"test:client-pages-redirect": "nx test client-pages-redirect",
"lint:client-pages-register": "nx lint client-pages-register",
"test:client-pages-register": "nx test client-pages-register",
"lint:client-pages-login": "nx lint client-pages-login",
"test:client-pages-login": "nx test client-pages-login",
"lint:client-pages-verify-email": "nx lint client-pages-verify-email",
"test:client-pages-verify-email": "nx test client-pages-verify-email",
"lint:client-pages-not-found": "nx lint client-pages-not-found",
"test:client-pages-not-found": "nx test client-pages-not-found",
"barrels:server-common-typeorm": "barrel-maintainer libs/server/common/typeorm/src --includeRootDir --singleQuotes --ts",
"barrels:server-common-types": "barrel-maintainer libs/server/common/types/src --includeRootDir --singleQuotes --ts",
"barrels:server-urls": "barrel-maintainer libs/server/urls/src --includeRootDir --singleQuotes --ts",
"barrels:server-user": "barrel-maintainer libs/server/user/src --includeRootDir --singleQuotes --ts",
"barrels:server-auth": "barrel-maintainer libs/server/auth/src --includeRootDir --singleQuotes --ts",
"barrels:client-core": "barrel-maintainer libs/client/services/core/src --includeRootDir --singleQuotes --ts",
"barrels:client-shared": "barrel-maintainer libs/client/shared/src --includeRootDir --singleQuotes --ts",
"lint:server-environments": "nx lint server-environments",
"lint:workspace": "nx workspace-lint",
"lint:tools": "eslint -f formattify tools/**/*.ts --fix",
"substep:set-server-environment": "ts-node --compiler-options='{\"module\":\"commonJs\"}' ./infrastructure/environments/set-server-environment.ts",
"substep:set-client-environment": "ts-node --compiler-options='{\"module\":\"commonJs\"}' ./infrastructure/environments/set-client-environment.ts",
"utils:create-environment-files": "nx workspace-schematic environment-files",
"utils:project-fixup": "nx workspace-schematic project-fixup",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"update": "nx migrate latest",
"workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph",
"help": "nx help",
"commit": "git-cz",
"checkYarn": "echo \"$npm_execpath\" | grep -q \"yarn\\.js$\" || (echo '⚠️ Use YARN not NPM! ⚠️ ' && echo && exit 1)",
"preinstall": "$npm_execpath --silent run checkYarn",
"postinstall": "node node_modules/@nx-plus/vue/patch-nx-dep-graph.js"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@apollo/client": "3.1.5",
"@crello/react-lottie": "0.0.9",
"@material-ui/core": "4.11.0",
"@material-ui/icons": "4.9.1",
"@material-ui/lab": "4.0.0-alpha.56",
"@nestjs-modules/mailer": "1.5.1",
"@nestjs/common": "7.4.4",
"@nestjs/core": "7.4.4",
"@nestjs/graphql": "7.6.0",
"@nestjs/jwt": "7.1.0",
"@nestjs/passport": "7.1.0",
"@nestjs/platform-express": "7.4.4",
"@nestjs/typeorm": "7.1.3",
"@types/cookie-parser": "1.4.2",
"apollo-server-express": "2.17.0",
"bcrypt": "5.0.0",
"class-transformer": "0.3.1",
"class-validator": "0.12.2",
"concurrently": "5.3.0",
"cookie-parser": "1.4.5",
"document-register-element": "1.14.6",
"express": "4.17.1",
"graphql": "15.3.0",
"graphql-tools": "6.2.1",
"handlebars": "4.7.6",
"js-cookie": "2.2.1",
"metascraper": "5.14.8",
"metascraper-description": "5.14.7",
"metascraper-image": "5.14.7",
"metascraper-title": "5.14.7",
"mongodb": "3.6.2",
"nodemailer": "6.4.11",
"passport": "0.4.1",
"passport-jwt": "4.0.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-router-dom": "5.2.0",
"reflect-metadata": "0.1.13",
"rxjs": "6.6.3",
"typeorm": "0.2.26",
"uuid": "8.3.0",
"vue": "2.6.12",
"vue-router": "3.4.3",
"vuetify": "2.3.10"
},
"devDependencies": {
"@babel/core": "7.11.6",
"@babel/preset-env": "7.11.5",
"@babel/preset-react": "7.10.4",
"@babel/preset-typescript": "7.10.4",
"@commitlint/cli": "9.1.2",
"@commitlint/config-conventional": "9.1.2",
"@nestjs/schematics": "7.1.2",
"@nestjs/testing": "7.4.4",
"@nrwl/cypress": "10.1.0",
"@nrwl/eslint-plugin-nx": "10.1.0",
"@nrwl/jest": "10.1.0",
"@nrwl/linter": "10.1.0",
"@nrwl/nest": "10.1.0",
"@nrwl/node": "10.1.0",
"@nrwl/react": "10.1.0",
"@nrwl/web": "10.1.0",
"@nrwl/workspace": "10.1.0",
"@nx-plus/vue": "10.0.0",
"@testing-library/react": "11.0.2",
"@types/bcrypt": "3.0.0",
"@types/express": "4.17.8",
"@types/jest": "26.0.13",
"@types/js-cookie": "2.2.6",
"@types/mongodb": "3.5.27",
"@types/node": "13.13.18",
"@types/nodemailer": "6.4.0",
"@types/passport": "1.0.4",
"@types/passport-jwt": "3.0.3",
"@types/react": "16.9.49",
"@types/react-dom": "16.9.8",
"@types/react-router-dom": "5.1.5",
"@types/uuid": "8.3.0",
"@types/yargs": "15.0.5",
"@typescript-eslint/eslint-plugin": "4.1.0",
"@typescript-eslint/parser": "4.1.0",
"@vue/cli-plugin-typescript": "4.5.6",
"@vue/cli-service": "4.5.6",
"@vue/eslint-config-typescript": "5.1.0",
"@vue/test-utils": "1.1.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "26.3.0",
"barrel-maintainer": "1.5.3",
"chalk": "4.1.0",
"commitizen": "4.2.1",
"cypress": "5.1.0",
"cz-conventional-changelog": "3.3.0",
"dotenv": "8.2.0",
"eslint": "7.8.1",
"eslint-config-prettier": "6.11.0",
"eslint-formatter-formattify": "4.1.0",
"eslint-import-resolver-typescript": "2.3.0",
"eslint-plugin-cypress": "2.11.1",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "24.0.0",
"eslint-plugin-jest-formatting": "2.0.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.1.1",
"eslint-plugin-unicorn": "21.0.0",
"eslint-plugin-vue": "6.2.2",
"husky": "4.3.0",
"jest": "26.4.2",
"jest-serializer-vue": "2.0.2",
"jest-transform-stub": "2.0.0",
"ts-jest": "26.3.0",
"ts-node": "9.0.0",
"tslint": "6.1.3",
"typescript": "4.0.2",
"vue-cli-plugin-vuetify": "2.0.7",
"vue-jest": "3.0.6",
"vue-template-compiler": "2.6.12",
"vuetify-loader": "1.6.0",
"yargs": "16.0.3"
}
}