forked from am32-firmware/am32-configurator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.61 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
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
{
"version": "1.0.1",
"name": "ark32-configurator",
"type": "module",
"engines": {
"node": "22.x"
},
"workspaces": [
"packages/*"
],
"scripts": {
"verify": "nuxt prepare && yarn lint && yarn typecheck && yarn test",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "yarn typecheck:core && yarn typecheck:app",
"typecheck:core": "tsc -p packages/am32-core/tsconfig.json --noEmit",
"typecheck:app": "nuxt prepare && vue-tsc --noEmit",
"build": "nuxt prepare && prisma generate && nuxt build",
"build:cli": "node scripts/build-cli.mjs",
"dev": "nuxt prepare && prisma generate && nuxt dev",
"generate": "nuxt prepare && prisma generate && nuxt generate",
"prepare": "nuxt prepare",
"preview": "nuxt preview",
"start": "node scripts/start.mjs",
"upload:files": "node deploy-files/upload.ts",
"lint": "eslint --ext .ts,.js,.vue .",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate deploy",
"prisma:push": "prisma db push",
"prisma:seed": "prisma db seed"
},
"devDependencies": {
"@egoist/tailwindcss-icons": "^1.9.2",
"@iconify/json": "^2.2.164",
"@nuxt/content": "latest",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/eslint-module": "^4.1.0",
"@nuxtjs/google-fonts": "^3.1.3",
"@tailwindcss/typography": "^0.5.10",
"@types/bcrypt": "^5.0.2",
"@types/dexie": "^1.3.1",
"@types/dom-serial": "~1.0.4",
"@types/node": "^25.5.0",
"@vite-pwa/nuxt": "^0.4.0",
"@vueuse/core": "^10.7.1",
"@vueuse/nuxt": "^10.7.1",
"dayjs-nuxt": "^2.1.9",
"esbuild": "^0.28.1",
"eslint": "^8.56.0",
"fast-check": "^4",
"nuxt": "^3.9.0",
"postject": "^1.0.0-alpha.6",
"typescript": "^5.5.4",
"vitest": "^3",
"vue": "^3.4.3",
"vue-router": "^4.2.5",
"vue-tsc": "^2.2.8"
},
"dependencies": {
"@animxyz/core": "^0.6.6",
"@animxyz/vue3": "^0.6.7",
"@netlify/blobs": "^7.0.1",
"@netlify/functions": "^2.6.0",
"@nuxt/image": "^1.7.1",
"@nuxt/ui": "^2.11.1",
"@pinia/nuxt": "^0.5.1",
"@prisma/adapter-mariadb": "^7.5.0",
"@prisma/client": "^7.5.0",
"ajv": "^8.12.0",
"bcrypt": "^5.1.1",
"better-sqlite3": "^12.5.0",
"bluejay-rtttl-parse": "^2.0.2",
"dayjs": "^1.11.12",
"dexie": "^4.2.1",
"dotenv": "^16.4.5",
"ioredis": "^5.4.1",
"minio": "^8.0.7",
"mysql2": "^3.20.0",
"nuxt-svgo": "^4.0.3",
"octokit": "^3.1.2",
"pinia": "^2.1.7",
"prisma": "^7.5.0",
"semver": "^7.6.0",
"tsx": "^4.21.0",
"vue-matomo": "^4.2.0"
},
"packageManager": "yarn@4.16.0"
}