-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.22 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
{
"name": "root",
"private": true,
"scripts": {
"build": "lerna run build",
"start:server": "lerna run start --scope=@kekat/server --stream",
"start:client": "lerna run start --scope=@kekat/client --stream",
"dev:server": "lerna run dev --scope=@kekat/server --stream",
"dev:client": "lerna run dev --scope=@kekat/client --stream",
"dev": "lerna run dev --stream",
"start": "npm run start --stream",
"codegen": "graphql-codegen --config .graphqlrc.yml",
"prestart": "yarn codegen",
"predev": "yarn codegen"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/typeorm/**",
"**/typeorm",
"**/connect-redis/**",
"**/connect-redis"
]
},
"devDependencies": {
"@graphql-codegen/cli": "^1.17.8",
"@graphql-codegen/introspection": "1.17.6",
"@graphql-codegen/typescript": "1.17.6",
"@graphql-codegen/typescript-operations": "1.17.6",
"@graphql-codegen/typescript-react-apollo": "1.17.6",
"@graphql-codegen/typescript-resolvers": "1.17.6",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"concurrently": "^5.2.0",
"eslint": "^7.5.0",
"typescript": "^3.9.7"
}
}