-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.91 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": "forager",
"type": "module",
"version": "2.1.1",
"scripts": {
"dev": "vite --host",
"build": "vue-tsc --noEmit && vite build",
"tailwind-config-viewer": "tailwind-config-viewer -o",
"pnpm:check": "pnpm up -L -i",
"type:check": "vue-tsc --noEmit ",
"lint:check": "eslint \"src/*.{vue,ts,js}\"",
"lint:fix": "eslint \"src/*.{vue,ts,js}\" --fix",
"serve": "vite preview",
"pocketbase:serve": "cd db && go run main.go serve",
"pocketbase:seed": "cd db && go run main.go seed",
"pocketbase:types": "npx pocketbase-typegen --db ./db/pb_data/data.db --out ./src/pocketbase-types.ts",
"pocketbase:migrate": "cd db && go run main.go migrate",
"pocketbase:migrate:down": "cd db && go run main.go migrate down",
"pocketbase:migrate:create": "cd db && go run main.go migrate create",
"changeset": "npx changeset",
"changeset:status": "npx changeset status --verbose",
"changeset:version": "npx changeset version"
},
"dependencies": {
"@vueuse/core": "10.6.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-vue-next": "^0.395.0",
"mapbox-gl": "^2.15.0",
"pinia": "^2.1.7",
"pocketbase": "^0.18.0",
"radix-vue": "^1.8.3",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"tippy.js": "^6.3.7",
"vue": "3.3.8"
},
"devDependencies": {
"@antfu/eslint-config": "^2.1.0",
"@changesets/cli": "^2.26.2",
"@types/geojson": "^7946.0.13",
"@types/mapbox-gl": "^2.7.19",
"@types/node": "^20.9.4",
"@vitejs/plugin-vue": "4.5.0",
"autoprefixer": "10.4.16",
"eslint": "8.54.0",
"pocketbase-typegen": "^1.2.1",
"postcss": "8.4.31",
"sass": "1.69.5",
"tailwindcss": "3.3.5",
"typescript": "5.2.2",
"unplugin-auto-import": "0.16.7",
"unplugin-vue-components": "0.25.2",
"vite": "5.0.2",
"vite-plugin-pwa": "^0.17.0",
"vue-tsc": "1.8.22"
}
}