-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.42 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "study-hack",
"description": "a study hack ",
"engines": {
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
},
"engines-annotation": "Mostly required by sharp which needs a Node-API v9 compatible runtime",
"private": true,
"trustedDependencies": [
"sharp"
],
"trustedDependencies-annotation": "Needed for bun to allow running install scripts",
"type": "module",
"scripts": {
"build": "qwik build",
"build-storybook": "storybook build",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.server": "vite build -c adapters/vercel-edge/vite.config.ts",
"build.types": "tsc --incremental --noEmit",
"deploy": "vercel deploy",
"dev:prod": "vite --host --mode ssr",
"dev:db": "cd ./drizzle/ && if [ ! -f ../local.db ]; then npx drizzle-kit --config ./drizzle.config.ts generate && npx drizzle-kit --config ./drizzle.config.ts push && mv local.db ..; fi",
"dev": " export LOCAL=true && bun run dev:db && bun drizzle/seed.ts && vite --host --mode ssr ",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"drizzle:generate": "drizzle-kit generate:sqlite",
"drizzle:migrate": "drizzle-kit push:sqlite",
"drizzle:studio": "drizzle-kit studio --host 127.0.0.1",
"test": " npx vitest run && exit 0",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"initdb": "sqlite3 local.db < schema_db/initials.sql || true",
"lint": "eslint \"src/**/*.ts*\"",
"preview": "qwik build preview && vite preview --open",
"start": "vite --open --mode ssr --host",
"storybook": "storybook dev -p 6006",
"qwik": "qwik"
},
"devDependencies": {
"@auth/core": "0.31.0",
"@auth/qwik": "0.2.2",
"@builder.io/qwik": "latest",
"@builder.io/qwik-auth": "0.2.2",
"@builder.io/qwik-city": "latest",
"@dagger.io/dagger": "^0.13.3",
"@faker-js/faker": "^9.0.3",
"@libsql/client": "^0.5.2",
"@modular-forms/qwik": "^0.26.1",
"@nabla/vite-plugin-eslint": "^2.0.4",
"@qwik-ui/headless": "latest",
"@qwik-ui/styled": "latest",
"@qwik-ui/utils": "latest",
"@qwikest/icons": "latest",
"@storybook/addon-essentials": "latest",
"@storybook/addon-links": "latest",
"@storybook/blocks": "latest",
"@storybook/builder-vite": "latest",
"@storybook/html": "latest",
"@storybook/html-vite": "latest",
"@types/better-sqlite3": "^7.6.9",
"@types/eslint": "^8.56.10",
"@types/leaflet": "^1.9.6",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"autoprefixer": "^10.4.19",
"class-variance-authority": "^0.7.0",
"drizzle-kit": "latest",
"drizzle-orm": "^0.33.0",
"eslint": "^8.57.0",
"eslint-plugin-qwik": "^1.6.0",
"leaflet": "1.9.4",
"lucide-qwik": "^1.0.0",
"nx": "^19.6.4",
"postcss": "^8.4.31",
"posthog-js": "latest",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.4",
"qwik-ui": "^0.1.3",
"storybook": "latest",
"storybook-framework-qwik": "latest",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.4.5",
"undici": "*",
"valibot": "^0.37.0",
"vercel": "^29.1.1",
"vite": "^5.3.6",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^2.1.1"
},
"nx": {},
"dependencies": {
"better-sqlite3": "^11.3.0",
"test": "^3.3.0"
}
}