-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.44 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.44 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "NODE_ENV=production next build",
"start": "NODE_ENV=production next start",
"lint": "next lint",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"prod:db:deploy": "NODE_ENV=production prisma migrate deploy",
"deploy": "deloyn deploy",
"format": "prettier --write .",
"test": "jest"
},
"dependencies": {
"@prisma/client": "^6.9.0",
"@prisma/extension-accelerate": "^2.0.1",
"@reduxjs/toolkit": "^2.8.2",
"axios": "^1.10.0",
"deloyn": "^1.0.19",
"next": "15.3.3",
"next-redux-wrapper": "^8.1.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.12",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-redux": "^9.2.0",
"undici": "^7.10.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.3.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prisma": "^6.9.0",
"tailwindcss": "^4",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}