-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 779 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 779 Bytes
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
{
"name": "client",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite client --config client/vite.config.js",
"build": "vite build client --config client/vite.config.js",
"preview": "vite preview client --config client/vite.config.js",
"start": "serve -s client/dist -l $PORT",
"heroku-postbuild": "npm run build"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^2.4.2",
"eslint": "^8.44.0",
"prettier": "^3.0.0",
"svelte": "^4.0.3",
"vite": "^4.4.3",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"standard": "^17.1.0"
},
"dependencies": {
"firebase": "^10.1.0",
"serve": "^14.2.4",
"svelte-routing": "^2.0.0"
},
"engines": {
"node": ">=18.17.0"
}
}