-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
126 lines (126 loc) · 4.38 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
{
"name": "renestql",
"version": "0.1.0",
"scripts": {
"nx": "nx",
"start": "nx serve",
"build": "run-p build:api build:web",
"build:prod": "run-p build:api:prod build:web:prod",
"build:api": "yarn clean:build:api && nx run api:build",
"build:api:prod": "yarn clean:build:api && nx run api:build --prod",
"build:web": "yarn clean:build:web && nx run web:build",
"build:web:prod": "yarn clean:build:web && nx run web:build --prod",
"clean:build": "rimraf ./dist",
"clean:build:api": "rimraf ./dist/apps/api",
"clean:build:web": "rimraf ./dist/apps/web",
"clean:node": "rimraf ./node_modules",
"clean": "run-p clean:build clean:node",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"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",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph",
"help": "nx help",
"typeorm:cli": "ts-node -O '{\"module\": \"commonjs\"}' ./node_modules/.bin/typeorm -f ./apps/api/src/config/typeorm/typeorm.cli.ts",
"typeorm:seed": "ts-node -O '{\"module\": \"commonjs\"}' ./node_modules/.bin/typeorm -f ./apps/api/src/config/typeorm/typeorm.seed.ts",
"migration:generate": "yarn typeorm:cli migration:generate -n",
"migration:run": "yarn typeorm:cli migration:run",
"migration:revert": "yarn typeorm:cli migration:revert",
"seed:create": "yarn typeorm:seed migration:create -c seed -n ",
"seed:run": "yarn typeorm:seed migration:run -c seed",
"docker:up": "docker-compose -f docker/docker-compose.development.yml up"
},
"private": true,
"dependencies": {
"@nestjs/common": "6.6.7",
"@nestjs/core": "6.6.7",
"@nestjs/graphql": "6.5.1",
"@nestjs/jwt": "6.1.1",
"@nestjs/passport": "6.1.0",
"@nestjs/platform-express": "6.6.7",
"@nestjs/typeorm": "6.1.3",
"antd": "3.23.1",
"apollo-server-express": "2.9.3",
"bcryptjs": "2.4.3",
"dataloader": "1.4.0",
"document-register-element": "1.14.3",
"graphql": "14.5.4",
"graphql-depth-limit": "1.1.0",
"graphql-tools": "4.0.5",
"graphql-validation-complexity": "0.2.5",
"helmet": "3.21.0",
"lodash": "4.17.15",
"mysql": "2.17.1",
"nanoid": "2.1.0",
"nest-access-control": "2.0.1",
"passport": "0.4.0",
"passport-jwt": "^4.0.0",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-router-dom": "5.0.1",
"typeorm": "0.2.18",
"yup": "0.27.0"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/plugin-proposal-decorators": "7.4.4",
"@babel/preset-env": "7.5.5",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.3.3",
"@nestjs/schematics": "6.4.4",
"@nestjs/testing": "6.6.7",
"@nrwl/cypress": "8.4.13",
"@nrwl/eslint-plugin-nx": "8.4.13",
"@nrwl/jest": "8.4.13",
"@nrwl/nest": "8.4.13",
"@nrwl/node": "8.4.13",
"@nrwl/react": "8.4.13",
"@nrwl/web": "8.4.13",
"@nrwl/workspace": "8.4.13",
"@testing-library/react": "9.1.4",
"@types/bcryptjs": "2.4.2",
"@types/graphql-depth-limit": "1.1.2",
"@types/helmet": "0.0.44",
"@types/jest": "24.0.18",
"@types/lodash": "4.14.138",
"@types/node": "12.7.4",
"@types/passport-jwt": "3.0.1",
"@types/react": "16.9.2",
"@types/react-dom": "16.9.0",
"@types/yup": "0.26.23",
"@typescript-eslint/eslint-plugin": "2.1.0",
"@typescript-eslint/parser": "2.1.0",
"babel-loader": "8.0.6",
"babel-plugin-import": "1.12.1",
"babel-plugin-macros": "2.6.1",
"core-js": "3.2.1",
"cypress": "3.4.1",
"dotenv": "8.1.0",
"eslint": "6.3.0",
"eslint-config-prettier": "6.2.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-react-hooks": "2.0.1",
"jest": "24.9.0",
"npm-run-all": "4.1.5",
"prettier": "1.18.2",
"regenerator-runtime": "0.13.3",
"rimraf": "3.0.0",
"ts-jest": "24.0.2",
"ts-node": "8.3.0",
"tslint": "5.19.0",
"typescript": "3.6.2"
}
}