-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 888 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
{
"name": "vite-template-solid",
"version": "0.0.0",
"description": "",
"type": "module",
"scripts": {
"start:go": "NORSKY_DATABASE=feed.db NORSKY_HOSTNAME=norsky.snorre.io go run main.go serve",
"start:vite": "vite",
"start": "concurrently \"npm run start:vite\" \"npm run start:go\"",
"dev": "vite",
"build": "vite build",
"serve": "vite preview"
},
"license": "MIT",
"devDependencies": {
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.1",
"postcss": "^8.4.31",
"solid-devtools": "^0.27.7",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vite-plugin-solid": "^2.7.1"
},
"dependencies": {
"@solid-primitives/refs": "^1.0.5",
"chart.js": "^4.4.0",
"chartjs-adapter-date-fns": "^3.0.0",
"date-fns": "^2.30.0",
"solid-chartjs": "^1.3.8",
"solid-js": "^1.8.1"
}
}