-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.71 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
{
"name": "tascal",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"format": "prettier --write .",
"format:write": "npm run format",
"format:check": "prettier --check .",
"lint": "next lint",
"lint:fix": "next lint --fix",
"lint:markup": "markuplint \"**/*.tsx\"",
"lint:markup:fix": "markuplint \"**/*.tsx\" --fix",
"test": "playwright test",
"prisma:generate": "prisma generate",
"prisma:migrate": "npx prisma migrate dev --name init"
},
"dependencies": {
"@auth/prisma-adapter": "2.1.0",
"@conform-to/react": "1.1.3",
"@conform-to/zod": "1.1.3",
"@faker-js/faker": "8.4.1",
"@heroicons/react": "2.1.3",
"@nextui-org/react": "2.2.10",
"@prisma/client": "^5.12.1",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.9.0",
"date-fns": "3.6.0",
"framer-motion": "11.0.25",
"next": "14.1.4",
"next-auth": "5.0.0-beta.18",
"react": "^18",
"react-dom": "^18",
"swr": "2.2.5",
"zod": "3.22.4"
},
"devDependencies": {
"@markuplint/jsx-parser": "4.7.2",
"@markuplint/react-spec": "4.5.2",
"@playwright/test": "^1.44.1",
"@types/node": "20.12.7",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"dotenv": "16.4.5",
"eslint": "^8",
"eslint-config-next": "14.1.4",
"eslint-config-prettier": "9.1.0",
"markuplint": "4.8.1",
"postcss": "^8",
"prettier": "3.2.5",
"prisma": "5.12.1",
"tailwindcss": "^3.3.0",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}