-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.46 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.46 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
{
"name": "solid-start-firebase-template",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:firebase\" \"npm run functions:build:watch\" --names server,firebase,functions",
"dev:server": "vinxi dev",
"dev:firebase": "firebase emulators:start --only firestore,hosting,auth,functions",
"build": "vinxi build",
"functions:build:watch": "npm --prefix functions run build:watch",
"functions:shell": "firebase functions:shell",
"start": "vinxi start",
"lint": "biome lint --write",
"format": "biome format --write",
"fix": "npm run format && npm run lint -- --unsafe",
"test": "concurrently \"npm run dev:firebase\" \"npm run test:vitest\" --names firebase,vitest --kill-others --success first",
"test:vitest": "wait-on http-get://localhost:8080 http-get://localhost:5000 http-get://localhost:9099 && vitest",
"prepare": "husky",
"install": "cd functions && npm install"
},
"dependencies": {
"@solidjs/router": "^0.16.1",
"@solidjs/start": "^1.3.2",
"concurrently": "^9.2.1",
"firebase": "^12.12.1",
"solid-firebase": "^0.3.0",
"solid-js": "^1.9.12",
"vinxi": "^0.5.11",
"vite-plugin-solid": "^2.11.12"
},
"engines": {
"node": ">=22"
},
"devDependencies": {
"@biomejs/biome": "2.4.14",
"@solidjs/testing-library": "^0.8.10",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"vitest": "^4.1.5",
"wait-on": "^9.0.5"
}
}