-
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.67 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.67 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": "next15-template",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint ./src --fix --ext .tsx,.ts",
"docker:start": "docker compose -f docker-compose.yml up --build -d",
"prisma:migrate": "prisma migrate dev --name init",
"prisma:generate": "prisma generate",
"prisma:studio": "prisma studio",
"test": "jest",
"test:watch": "jest --watchAll",
"prepare": "husky install",
"commit": "eslint . --fix --ext .tsx,.ts && prettier --write . && git add . && npx cz",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"type-check": "tsc --noEmit",
"apply:instructions": "ts-node scripts/apply_github_instructions.ts"
},
"dependencies": {
"@prisma/adapter-pg": "^6.12.0",
"@prisma/client": "6.12.0",
"clsx": "^2.1.1",
"lucide-react": "^0.532.0",
"next": "15.4.4",
"react": "19.2.3",
"react-dom": "19.2.3"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.32.0",
"@storybook/addon-docs": "^9.0.18",
"@storybook/addon-onboarding": "^9.0.18",
"@storybook/nextjs": "^9.0.18",
"@tailwindcss/postcss": "^4.1.11",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"ajv": "^8.17.1",
"commitizen": "^4.3.1",
"eslint": "^9.32.0",
"eslint-config-next": "15.4.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.21.3",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-storybook": "^9.0.18",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"lint-staged": "^16.1.2",
"postcss": "^8",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"prisma": "^6.12.0",
"storybook": "^9.0.18",
"tailwindcss": "^4.1.11",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"uuid": "^11.1.0"
},
"resolutions": {
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix"
}
}