-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.37 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
{
"private": true,
"name": "graphile-next-example",
"version": "1.0.0",
"scripts": {
"gm": "graphile-migrate",
"db:init": "ts-node -r dotenv/config scripts/db-init",
"db:migrate": "npm run gm watch",
"db:commit": "npm run gm commit",
"codegen": "graphql-codegen --config codegen.yml --watch",
"dev": "NODE_ENV=development ts-node -r dotenv/config server/index.ts",
"build": "swc server -d dist/ && next build",
"start": "NODE_ENV=production node -r dotenv/config dist/index",
"test": "jest"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@blueprintjs/core": "^4.9.3",
"@blueprintjs/popover2": "^1.6.3",
"@graphile-contrib/pg-many-to-many": "^1.0.1",
"@graphile-contrib/pg-simplify-inflector": "^6.1.0",
"@graphile/pg-pubsub": "^4.12.3",
"cookie": "^0.5.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"graphql": "^15.8.0",
"graphql-ws": "^5.10.1",
"lodash": "^4.17.21",
"next": "^12.2.5",
"next-auth": "^4.10.3",
"next-with-apollo": "^5.3.0",
"pg": "^8.8.0",
"postgraphile": "^4.12.11",
"postgraphile-plugin-connection-filter": "^2.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@graphql-codegen/add": "^3.2.1",
"@graphql-codegen/cli": "^2.12.0",
"@graphql-codegen/introspection": "^2.2.1",
"@graphql-codegen/typescript": "^2.7.3",
"@graphql-codegen/typescript-operations": "^2.5.3",
"@graphql-codegen/typescript-react-apollo": "^3.3.3",
"@next/eslint-plugin-next": "^12.2.5",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.246",
"@types/cookie": "^0.5.1",
"@types/express": "^4.17.13",
"@types/graphql": "^14.5.0",
"@types/jest": "^27.5.1",
"@types/lodash": "^4.14.184",
"@types/node": "^17.0.36",
"@types/react": "^18.0.18",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"autoprefixer": "^10.4.8",
"eslint": "^8.23.0",
"eslint-config-next": "^12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tailwindcss": "^3.6.1",
"execa": "^5.1.1",
"graphile-migrate": "^1.4.0",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
}
}