-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.05 KB
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
{
"name": "gofire",
"version": "2.0.0",
"type": "module",
"engines": {
"node": ">=20.x"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"prod": "npm run build && vercel --prod",
"check": "svelte-check --tsconfig ./tsconfig.json",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"chart.js": "^4.4.6",
"firebase": "^11.0.2",
"svelte": "^4.2.19",
"svelte-chartjs": "^3.1.5",
"uuid": "^11.0.3"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/svelte": "^5.2.4",
"@tsconfig/svelte": "^5.0.4",
"@types/node": "^22.9.3",
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.15.0",
"eslint-plugin-svelte": "^2.46.0",
"jsdom": "^25.0.1",
"postcss": "^8.4.49",
"prettier": "^3.4.1",
"prettier-plugin-svelte": "^3.3.2",
"svelte-check": "^3.8.6",
"tailwindcss": "^3.4.15",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vitest": "^2.1.5"
}
}