-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 907 Bytes
/
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
{
"name": "todo-app",
"scripts": {
"dev": "vinxi dev",
"build": "vinxi build",
"start": "vinxi start",
"lint": "eslint --fix \"**/*.{ts,tsx,js,jsx}\"",
"push": "prisma db push",
"postinstall": "prisma generate"
},
"type": "module",
"devDependencies": {
"@types/node": "^20.11.26",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^9.13.0",
"eslint-plugin-solid": "^0.14.3",
"typescript": "^5.6.2",
"vite": "^5.1.6",
"prisma": "^5.20.0"
},
"dependencies": {
"@solidjs/router": "^0.14.10",
"@solidjs/start": "^1.0.9",
"solid-js": "^1.9.3",
"vinxi": "^0.4.3",
"@solidjs/meta": "^0.29.4",
"zod": "^3.22.4",
"@prisma/client": "^5.20.0",
"postcss": "^8.4.40",
"autoprefixer": "^10.4.19",
"tailwindcss": "^3.4.7"
},
"engines": {
"node": ">=16"
}
}