-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.82 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
{
"name": "preactice",
"version": "0.1.0",
"private": true,
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate": "ts-node --transpile-only graphql/schema",
"test": "npm run generate && yarn docker:up && yarn dotenv -e .env.test prisma db push && dotenv -e .env.test --maxWorkers 2 jest -i",
"test-watch": "jest --watch",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@next-auth/prisma-adapter": "^1.0.4",
"@prisma/client": "^4.2.1",
"@types/cors": "^2.8.12",
"apollo-server-micro": "^3.10.1",
"graphql-middleware": "^6.1.32",
"graphql-shield": "^7.5.0",
"micro-cors": "^0.1.1",
"next": "12.2.5",
"next-auth": "^4.10.3",
"nexus": "^1.3.0",
"nexus-validate": "^1.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-toastify": "^9.0.8",
"uuid": "^8.3.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@types/jest": "^28.1.7",
"@types/micro-cors": "^0.1.2",
"@types/node": "18.7.2",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@types/socket.io": "^3.0.2",
"autoprefixer": "^10.4.8",
"cypress": "^10.4.0",
"dotenv-cli": "^6.0.0",
"eslint": "8.21.0",
"eslint-config-next": "12.2.5",
"express": "^4.18.1",
"express-rate-limit": "^6.5.1",
"get-port": "^5.1.1",
"graphql-request": "^4.3.0",
"jest": "^28.1.3",
"jest-mock-extended": "^2.0.7",
"postcss": "^8.4.16",
"prisma": "^4.2.1",
"tailwindcss": "^3.1.8",
"ts-node": "^10.9.1",
"typescript": "4.7.4"
}
}