-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.57 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.57 KB
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
{
"name": "graphql-pg",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:ivgtr/graphql-pg.git",
"author": "ivgtr <gear.1112t.o@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "run-p dev:client dev:server dev:codegen",
"dev:client": "cd ./packages/client && yarn dev",
"dev:server": "cd ./packages/server && yarn dev",
"dev:codegen": "graphql-codegen --config codegen.yml -w",
"build": "yarn build:generate && yarn build:server && yarn build:client",
"build:client": "cd ./packages/client && yarn build",
"build:server": "cd ./packages/server && yarn build",
"build:codegen": "graphql-codegen --config codegen.yml",
"lint": "yarn cl:lint && yarn sr:lint",
"lint:client": "eslint --fix --ext .jsx,.js,.tsx,.ts ./packages/client/src",
"lint:server": "eslint --fix --ext .jsx,.js,.tsx,.ts ./packages/server/src",
"setup": "yarn && run-p setup:client setup:server",
"setup:client": "cd ./packages/client && yarn",
"setup:server": "cd ./packages/server && yarn"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.21.3",
"@graphql-codegen/typescript": "^1.21.1",
"@graphql-codegen/typescript-operations": "^1.17.15",
"@graphql-codegen/typescript-react-apollo": "^2.2.3",
"@graphql-codegen/typescript-resolvers": "^1.19.0",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"eslint": "^7.23.0",
"eslint-config-sumikko": "^0.4.0",
"npm-run-all": "^4.1.5",
"typescript": "^4.2.3"
},
"dependencies": {
"graphql": "^15.5.0",
"graphql-tag": "^2.11.0"
}
}