-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.77 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "senate",
"engines": {
"node": ">=15.0.0"
},
"private": true,
"scripts": {
"build": "qwik build && node fixpath.js",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.server": "vite build -c adapters/static/vite.config.ts",
"build.types": "tsc --incremental --noEmit",
"deploy": "echo 'Run \"npm run qwik add\" to install a server adapter'",
"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 .",
"lint": "eslint \"src/**/*.ts*\"",
"preview": "qwik build preview && vite preview --open",
"start": "vite --open --mode ssr",
"qwik": "qwik",
"fetch": "node data/fetch.mjs",
"compile": "node data/process.mjs"
},
"devDependencies": {
"@builder.io/qwik": "^1.1.1",
"@builder.io/qwik-city": "^1.1.1",
"@builder.io/qwik-react": "0.5.0",
"@types/eslint": "8.37.0",
"@types/node": "^20.1.0",
"@types/react": "18.2.5",
"@types/react-dom": "18.2.4",
"@typescript-eslint/eslint-plugin": "5.59.2",
"@typescript-eslint/parser": "5.59.2",
"autoprefixer": "^10.4.14",
"eslint": "8.40.0",
"eslint-plugin-qwik": "^1.1.1",
"node-fetch": "^3.3.1",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "^3.3.1",
"typescript": "5.0.4",
"undici": "5.22.0",
"vite": "4.3.5",
"vite-tsconfig-paths": "4.2.0"
},
"dependencies": {
"@headlessui/react": "^1.7.13",
"@wevisdemo/ui": "^6.1.1",
"lottie-web": "^5.10.2",
"motion": "^10.15.5",
"react-wrap-balancer": "^0.5.0"
}
}