-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.58 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.58 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
81
82
83
84
85
86
{
"name": "@codefun-debug/frontend",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"analyze": "cross-env ANALYZE=true pnpm build",
"build": "next build",
"deps": "ncu -u",
"dev": "next dev",
"format": "prettier --write .",
"lint": "next lint",
"start": "next start",
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"db:pull": "prisma db pull",
"db:generate": "prisma generate",
"db:format": "prisma format",
"db:migrate:dev": "prisma migrate dev",
"test": "dotenv -e .env.test -- prisma migrate reset --force && dotenv -e .env.test vitest"
},
"prisma": {
"schema": "src/database/prisma/schema",
"seed": "tsx src/database/prisma/seed/main.ts"
},
"dependencies": {
"@headlessui/react": "1.7.19",
"@hookform/resolvers": "3.3.4",
"@next/bundle-analyzer": "15.2.6",
"@prisma/client": "^6.2.1",
"@reduxjs/toolkit": "2.2.3",
"client-only": "0.0.1",
"cross-env": "7.0.3",
"monaco-editor": "0.48.0",
"monaco-editor-webpack-plugin": "7.1.0",
"next": "15.2.6",
"next-redux-wrapper": "8.1.0",
"react": "19.2.1",
"react-dom": "19.2.1",
"react-redux": "9.1.1",
"redux": "5.0.1",
"server-only": "0.0.1",
"sharp": "0.33.3",
"ts-md5": "^1.3.1",
"zod": "3.23.4"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.12",
"@testing-library/react": "^16.0.0",
"@types/node": "20.12.7",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@types/shell-quote": "1.7.5",
"@typescript-eslint/eslint-plugin": "7.7.1",
"@typescript-eslint/parser": "7.7.1",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "10.4.19",
"dotenv-cli": "^7.4.2",
"eslint": "8.56.0",
"eslint-config-next": "15.2.6",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-simple-import-sort": "12.1.0",
"eslint-plugin-tailwindcss": "3.15.1",
"husky": "9.0.11",
"jsdom": "^24.1.0",
"lint-staged": "15.2.2",
"npm-check-updates": "16.14.18",
"postcss": "8.4.38",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "0.5.14",
"prisma": "^6.2.1",
"shell-quote": "1.8.1",
"tailwindcss": "3.4.3",
"tsx": "^4.16.2",
"typescript": "5.4.5",
"vitest": "^2.0.2"
},
"packageManager": "pnpm@9.10.0+sha512.73a29afa36a0d092ece5271de5177ecbf8318d454ecd701343131b8ebc0c1a91c487da46ab77c8e596d6acf1461e3594ced4becedf8921b074fbd8653ed7051c",
"pnpm": {
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
}
}
}