-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "vitune-landing",
"version": "0.1.0",
"private": true,
"author": {
"name": "Huizengek",
"email": "[email protected]",
"url": "https://vitune.app/"
},
"license": "GPL-3.0-only",
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "vinxi dev",
"build": "vinxi build",
"start": "vinxi start",
"build:vercel": "vinxi build --preset vercel",
"lint": "eslint src/",
"lint:fix": "eslint --fix src/"
},
"dependencies": {
"@solidjs/router": "^0.14.9",
"@solidjs/start": "^1.0.8",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.47",
"solid-icons": "^1.1.0",
"solid-js": "^1.8.17",
"tailwindcss": "^3.4.3",
"vinxi": "0.3.11"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/node": "^20.14.2",
"eslint": "^9.7.0",
"typescript": "^5.4.5",
"typescript-eslint": "^8.9.0"
}
}