-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.3 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
{
"name": "@gptscript-ai/tools",
"private": true,
"type": "module",
"scripts": {
"up": "docker compose up --build",
"down": "docker compose down",
"build": "nuxt build",
"dev": "nuxt dev --host",
"dev:migrate": "npx prisma generate && npx prisma migrate deploy && yarn dev --host",
"lint": "eslint --max-warnings 0 .",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"start": "nuxt start",
"start:migrate": "npx prisma generate && npx prisma migrate deploy && yarn start",
"go:tidy": "(cd indexer && go mod tidy) && (cd parser && go mod tidy)",
"go:build": "(cd indexer && go build) && (cd parser && go build)"
},
"dependencies": {
"@octokit/core": "^6.0.1",
"@prisma/client": "^5.11.0",
"sequelize": "^6.37.1"
},
"devDependencies": {
"@antfu/eslint-config": "2.8.3",
"@heroicons/vue": "^2.1.1",
"@nuxt/devtools": "1.0.8",
"@nuxt/ui": "^2.14.2",
"@nuxtjs/color-mode": "^3.3.2",
"@tailwindcss/typography": "^0.5.10",
"@types/pg": "^8.11.2",
"eslint": "^8.57.0",
"nuxt": "^3.10.3",
"prisma": "^5.11.0",
"sass": "^1.71.1",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vue": "^3.4.19",
"vue-gtag-next": "^1.14.0",
"vue-router": "^4.3.0"
}
}