forked from move-fast-and-break-things/aibyss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.95 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.95 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
{
"name": "aibyss",
"license": "Apache-2.0",
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint": "^0.3.10",
"@nuxt/test-utils": "^3.12.1",
"@playwright/test": "^1.48.2",
"@types/argparse": "^2.0.16",
"@types/bcrypt": "^5.0.2",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.16",
"dotenv": "^16.4.5",
"happy-dom": "^15.10.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"monaco-editor": "^0.45.0",
"nuxt": "^3.8.2",
"nuxt-monaco-editor": "^1.2.6",
"postcss": "^8.4.32",
"prisma": "^6.16.2",
"tailwindcss": "^3.3.6",
"typescript": ">=5.3.2 <5.6.0",
"vitest": "^2.1.4",
"vue": "^3.3.8",
"vue-router": "^4.2.5",
"vue-tsc": "^2.0.26"
},
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "npm run dev:prisma && nuxt dev",
"dev:external": "nuxt --host dev",
"dev:prisma": "prisma migrate dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prisma:create-migration": "prisma migrate dev",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate deploy",
"start": "node .output/server/index.mjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest --run --exclude tests/e2e",
"test:watch": "vitest --exclude tests/e2e",
"test:e2e": "playwright test",
"test:e2e:open": "playwright test --ui",
"test:e2e:install": "npx playwright install",
"test:e2e:seed-test-users": "npx jiti ./bin/seed-test-users.ts",
"create-user": "npx jiti ./bin/create-user.ts",
"prepare": "husky"
},
"lint-staged": {
"*": "npm run lint:fix"
},
"type": "module",
"dependencies": {
"@prisma/client": "^6.16.2",
"argparse": "^2.0.1",
"bcrypt": "^5.1.1",
"chart.js": "^4.4.6",
"isolated-vm": "^4.6.0",
"lru-cache": "^10.2.0",
"pixi.js": "^8.3.4",
"prom-client": "^15.1.3",
"zod": "^3.22.4"
}
}