This repository has been archived by the owner on Mar 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.15 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
{
"name": "fullstack-apollo-skeleton",
"version": "0.1.0",
"private": true,
"author": {
"name": "Den <Themse> Polusmyak"
},
"scripts": {
"client:dev": "next dev",
"client:build": "next build",
"client:start": "next start",
"server:dev": "ts-node src/server/index.ts",
"codegen:client": "graphql-codegen --require dotenv/config",
"codegen:server": "graphback generate",
"generate": "yarn codegen:server && yarn codegen:client",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js",
"lint:fix": "yarn lint --fix"
},
"dependencies": {
"@apollo/client": "^3.2.5",
"@graphback/runtime-knex": "^1.1.0",
"apollo-server-express": "^2.19.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"graphback": "^1.1.0",
"graphql": "^15.4.0",
"graphql-config": "^3.2.0",
"graphql-migrations": "^1.1.0",
"knex": "^0.21.16",
"next": "10.0.0",
"pg": "^8.5.1",
"react": "17.0.1",
"react-dom": "17.0.1"
},
"devDependencies": {
"@graphql-cli/codegen": "^1.17.18",
"@graphql-codegen/add": "^2.0.1",
"@graphql-codegen/named-operations-object": "^1.17.8",
"@graphql-codegen/near-operation-file-preset": "^1.17.13",
"@graphql-codegen/schema-ast": "^1.17.8",
"@graphql-codegen/typescript": "^1.17.11",
"@graphql-codegen/typescript-apollo-client-helpers": "^1.1.0",
"@graphql-codegen/typescript-operations": "^1.17.8",
"@graphql-codegen/typescript-react-apollo": "^2.1.1",
"@next/bundle-analyzer": "^10.0.3",
"@types/glob": "^7.1.3",
"@types/graphql": "^14.5.0",
"@types/node": "^14.14.6",
"@types/react": "^16.9.55",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.21.5",
"graphback-cli": "^1.1.0",
"graphql-cli": "^4.1.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"next-compose-plugins": "^2.2.1",
"prettier": "^2.1.2",
"ts-node": "^9.1.1",
"typescript": "^4.0.5"
}
}