-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.39 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.39 KB
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": "my-t3-app",
"version": "0.1.0",
"private": true,
"scripts": {
"npm:fullInstall": "npm install --prefix ./src/server && npm run prisma:generate",
"next:build": "next build",
"next:dev": "next dev -p 3333",
"next:lint": "next lint",
"next:start": "next start -p 3333",
"express": "ts-node --transpile-only ./src/server/server.ts",
"express:watch": "nodemon",
"prisma:generate": "prisma generate",
"prisma:push": "npx prisma db push",
"lint": "next lint",
"start": "next start",
"prepare": "husky install && bash -c 'chmod ug+x .husky/*'",
"prisma:studio": "npx prisma studio",
"serve:dev": "concurrently \"npm run next:dev\" \"npm run express:watch\"",
"cypress": "cypress open"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^4.16.0",
"@t3-oss/env-nextjs": "^0.3.1",
"body-parser": "^1.20.2",
"concurrently": "^8.2.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"helmet": "^7.0.0",
"next": "^13.4.2",
"next-auth": "^4.22.1",
"pg": "^8.11.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.10.1",
"react-query": "^3.39.3",
"uuid": "^9.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@testing-library/cypress": "^9.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/cors": "^2.8.13",
"@types/eslint": "^8.37.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/node": "^18.16.18",
"@types/pg": "^8.10.2",
"@types/prettier": "^2.7.2",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/supertest": "^2.0.12",
"@types/testing-library__react": "^10.2.0",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"autoprefixer": "^10.4.14",
"cypress": "^12.16.0",
"eslint": "^8.40.0",
"eslint-config-next": "^13.4.2",
"husky": "^8.0.3",
"eslint-plugin-cypress": "^2.13.3",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"postcss": "^8.4.21",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"prisma": "^4.16.0",
"supertest": "^6.3.3",
"tailwindcss": "^3.3.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"ct3aMetadata": {
"initVersion": "7.13.2"
}
}