-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "next-auth-cypress-example",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "npx next build",
"dev": "npx next dev",
"start": "npx next start",
"postinstall": "npx prisma generate",
"lint": "npx next lint --dir .",
"lint-fix": "npx next lint --fix --dir .",
"test-unit": "vitest --watch",
"test-unit-ci": "vitest --run",
"coverage-unit": "vitest run --coverage",
"test-e2e": "cypress run",
"test-e2e-ci": "cypress run --config video=false",
"cypress-open": "cypress open",
"regen": "test -f .env && export $(cat .env | grep -v '#' | sed 's/\\r$//' | awk '/=/ {print $1}' ); npx prisma generate",
"push-db-reset": "test -f .env && export $(cat .env | grep -v '#' | sed 's/\\r$//' | awk '/=/ {print $1}' ); npx prisma db push --force-reset --accept-data-loss --skip-generate",
"seed-db": "test -f .env && export $(cat .env | grep -v '#' | sed 's/\\r$//' | awk '/=/ {print $1}' ); npx prisma db seed",
"reset-seed": "npm run push-db-reset; npm run seed-db",
"regen-reset-seed": "npm run regen; npm run reset-seed"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} --transpile-only prisma/seed.ts"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^4.11.0",
"@tanstack/react-query": "^4.26.1",
"@trpc/client": "^10.14.1",
"@trpc/next": "^10.14.1",
"@trpc/react-query": "^10.14.1",
"@trpc/server": "^10.14.1",
"bootstrap": "^5.2.3",
"next": "13.2.3",
"next-auth": "^4.20.1",
"nextjs-cors": "^2.1.2",
"react": "18.2.0",
"react-bootstrap": "^2.7.2",
"react-dom": "18.2.0",
"react-markdown": "^8.0.5",
"react-select": "^5.7.0",
"superjson": "1.9.1",
"uuid": "^9.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@percy/cli": "^1.20.3",
"@percy/cypress": "^3.1.2",
"@testing-library/cypress": "^9.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^18.14.6",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"@vitest/coverage-c8": "^0.29.2",
"cypress": "^12.7.0",
"dotenv": "^16.0.3",
"eslint": "^8.30.0",
"eslint-config-next": "13.2.3",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-testing-library": "5.10.2",
"mysql2": "^2.3.3",
"pg": "^8.8.0",
"prettier": "^2.8.4",
"prisma": "^4.11.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vitest": "^0.29.2",
"vitest-environment-prisma": "0.3.0",
"zod-prisma-types": "^2.4.0"
},
"ct3aMetadata": {
"initVersion": "7.3.1"
}
}