generated from poznianski/nextjs_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.21 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
{
"name": "template",
"type": "commonjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"postinstall": "prisma generate",
"build": "prisma generate && next build",
"start": "next start",
"lint": "npx eslint '**/*.{ts,tsx}' --fix",
"prepare": "husky",
"test": "jest",
"coverage": "vitest run --coverage"
},
"prisma": {
"seed": "ts-node --project tsconfig.scripts.json prisma/seed.ts"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@prisma/client": "^5.11.0",
"axios": "^1.6.7",
"clsx": "^2.1.0",
"next": "14.0.3",
"next-connect": "^1.0.0-next.4",
"npm": "^10.5.0",
"react": "^18",
"react-dom": "^18",
"react-loader-spinner": "^6.1.6",
"react-toastify": "^10.0.4",
"react-tooltip": "^5.26.3",
"tailwind-merge": "^2.2.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@jest/globals": "^29.7.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.28",
"@types/react": "^18.2.39",
"@types/react-dom": "^18.2.17",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.54.0",
"eslint-config-next": "^14.0.3",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"husky": "^9.0.10",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.31",
"prettier": "^3.1.0",
"prettier-plugin-prisma": "^5.0.0",
"prettier-plugin-tailwindcss": "^0.5.7",
"prisma": "^5.11.0",
"react-test-renderer": "^18.2.0",
"sass": "^1.70.0",
"tailwindcss": "^3.3.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.2"
}
}