-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.54 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
{
"name": "cash-register",
"type": "module",
"private": true,
"packageManager": "pnpm@8.9.2",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"postinstall": "nuxt prepare",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"preview": "nuxt preview",
"typecheck": "vue-tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "1.0.0-beta.27",
"@cloudflare/workers-types": "^4.20231016.0",
"@iconify-json/tabler": "^1.1.95",
"@lucia-auth/adapter-sqlite": "^2.0.1",
"@nuxt/devtools": "latest",
"@nuxthq/ui": "^2.7.0",
"@nuxtjs/fontaine": "^0.4.1",
"@nuxtjs/google-fonts": "^3.0.2",
"@trpc/client": "^10.41.0",
"@trpc/server": "^10.41.0",
"@types/better-sqlite3": "^7.6.6",
"@types/node": "^20.8.7",
"@vite-pwa/nuxt": "^0.1.1",
"@vueuse/core": "^10.5.0",
"@vueuse/nuxt": "^10.5.0",
"better-sqlite3": "^9.0.0",
"drizzle-kit": "^0.19.13",
"drizzle-orm": "^0.28.6",
"eslint": "^8.51.0",
"framework7": "^8.3.0",
"framework7-icons": "^5.0.5",
"framework7-vue": "^8.3.0",
"lint-staged": "^15.0.2",
"lucia": "^2.7.1",
"nuxt": "^3.8.0",
"pino": "^8.16.0",
"simple-git-hooks": "^2.9.0",
"std-env": "^3.4.3",
"superjson": "^2.0.0",
"trpc-nuxt": "^0.10.12",
"vue-tsc": "^1.8.19",
"zod": "^3.22.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
]
}
}