-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.52 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
{
"name": "challenge_01",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --max-warnings=0",
"sort-imports": "next lint --fix .",
"type-check": "tsc --noEmit",
"format": "prettier --check .",
"migrate": "dotenv -e .env.local -- npx prisma migrate dev --name deploy",
"prepare": "husky install",
"postinstall": "prisma generate"
},
"prisma": {
"schema": "src/lib/prisma/schema.prisma"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@prisma/client": "^5.5.2",
"clsx": "^2.0.0",
"lru-cache": "^10.0.2",
"next": "14.2.3",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"autoprefixer": "^10",
"dotenv-cli": "^7.3.0",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"postcss": "^8",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "^0.5.6",
"prisma": "^5.5.2",
"sass": "^1.69.5",
"tailwindcss": "^3",
"typescript": "^5"
}
}