generated from visoftsolutions/ksox-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.72 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
{
"name": "ksox-web",
"description": "Ksox Finance Platform",
"engines": {
"node": ">=15.0.0"
},
"private": true,
"trustedDependencies": [
"sharp"
],
"scripts": {
"build": "qwik build",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.types": "tsc --incremental --noEmit",
"build.server": "vite build -c adapters/fastify/vite.config.ts",
"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",
"update.check": "npx npm-check-updates",
"update": "npx npm-check-updates -u",
"clean": "rm -rf dist node_modules server tmp"
},
"devDependencies": {
"@builder.io/qwik": "^1.2.14",
"@builder.io/qwik-city": "^1.2.14",
"@dnlup/fastify-traps": "^3.0.0",
"@fastify/compress": "^6.4.0",
"@fastify/static": "^6.11.2",
"@types/eslint": "8.44.6",
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/parser": "6.9.0",
"@vanilla-extract/css": "^1.13.0",
"eslint": "8.52.0",
"eslint-plugin-qwik": "^1.2.14",
"fastify": "^4.24.3",
"fastify-plugin": "^4.5.1",
"prettier": "3.0.3",
"styled-vanilla-extract": "^0.5.7",
"typescript": "5.2.2",
"undici": "5.26.5",
"vite": "4.5.0",
"vite-tsconfig-paths": "4.2.1"
},
"dependencies": {
"@vanilla-extract/dynamic": "^2.0.3"
}
}