-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.17 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
{
"name": "front",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "wireit",
"dev:next": "next dev",
"dev:api": "nodemon & yarn gen:dev",
"build": "next build && tsc --project tsconfig.server.json",
"start": "NODE_ENV=production node dist/server.js",
"gen:dev": "graphql-codegen --watch",
"gen": "graphql-codegen"
},
"wireit": {
"dev": {
"dependencies": [
"dev:next",
"dev:api",
"gen:dev"
]
}
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@chakra-ui/react": "^1.8.6",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@headlessui/react": "^1.6.6",
"@heroicons/react": "^1.0.6",
"@hookform/resolvers": "^2.9.7",
"@pothos/core": "^3.20.0",
"@pothos/plugin-scope-auth": "^3.13.0",
"@pothos/plugin-simple-objects": "^3.5.0",
"@pothos/plugin-validation": "^3.7.0",
"apollo-server-core": "^3.10.2",
"apollo-server-express": "^3.10.2",
"apollo-server-micro": "^3.10.2",
"clsx": "^1.2.1",
"express": "^4.18.1",
"framer-motion": "^6.3.3",
"graphql": "^16.6.0",
"graphql-subscriptions": "^2.0.0",
"graphql-upload": "^13.0.0",
"graphql-ws": "^5.10.1",
"micro": "^9.4.1",
"next": "^12.2.5",
"react": "^17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.34.2",
"react-use": "^17.4.0",
"uuid": "^8.3.2",
"ws": "^8.8.1",
"zod": "^3.18.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/typescript": "^2.4.7",
"@graphql-codegen/typescript-operations": "^2.3.4",
"@types/express": "^4.17.13",
"@types/graphql-upload": "^8.0.11",
"@types/node": "^17.0.30",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.3",
"autoprefixer": "^10.4.5",
"concurrently": "^7.0.0",
"eslint": "8.14.0",
"eslint-config-next": "12.1.5",
"husky": "^7.0.4",
"nodemon": "^2.0.16",
"postcss": "^8.4.13",
"prettier": "^2.6.0",
"pretty-quick": "^3.1.3",
"tailwindcss": "^3.0.23",
"ts-node": "^10.7.0",
"typescript": "4.6.4",
"wireit": "^0.7.1"
}
}