-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.13 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.13 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
{
"name": "drop-it",
"description": "Drop It",
"engines": {
"node": ">=18.0.0"
},
"private": true,
"scripts": {
"build": "qwik build",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.server": "vite build -c adaptors/static/vite.config.ts",
"build.types": "tsc --incremental --noEmit",
"deploy": "echo 'Run \"npm run qwik add\" to install a server adaptor'",
"dev": "vite --mode ssr",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"preview": "qwik build preview && vite preview --open",
"start": "vite --open --mode ssr",
"qwik": "qwik"
},
"devDependencies": {
"@builder.io/qwik": "0.16.1",
"@builder.io/qwik-city": "0.0.128",
"@types/node": "^18.11.16",
"@types/node-fetch": "latest",
"@types/youtube-player": "^5.5.6",
"node-fetch": "3.3.0",
"typescript": "4.9.4",
"undici": "5.14.0",
"vite": "4.0.1",
"vite-tsconfig-paths": "3.5.0"
},
"dependencies": {
"youtube-player": "^5.5.2"
}
}