-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 4.21 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 4.21 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "simple-frontend-stack",
"version": "0.0.0",
"description": "A modern frontend focused development stack with PocketBase as its backend",
"type": "module",
"scripts": {
"backend:build": "go build",
"backend:dev": "bun run frontend:build && (bun run frontend:watch & bun run backend:serve)",
"backend:format": "gofmt -w ./main.go $(find . -type f -name '*.go')",
"backend:format-check": "gofmt -l -d -e ./main.go $(find . -type f -name '*.go')",
"backend:lint": "go fix ./...",
"backend:lint-check": "go vet ./...",
"backend:serve": "go run main.go",
"backend:upgrade": "go get -u -t ./... && go mod tidy",
"backend:test": "go test ./... -v",
"frontend:build": "bun x vite build",
"frontend:dev": "bun run frontend:watch & bun run frontend:serve",
"frontend:format": "bun x prettier --write \"src/**/*.{ts,tsx,html,css,json}\"",
"frontend:format-check": "bun x prettier --check \"src/**/*.{ts,tsx,html,css,json}\"",
"frontend:lint": "bun x eslint --fix",
"frontend:lint-check": "bun x eslint",
"frontend:serve": "bun x vite preview --port 8161",
"frontend:start": "bun run frontend:build && bun run frontend:serve",
"frontend:type-check": "bun x tsc --pretty --noEmit",
"frontend:update": "bun x npm-check-updates",
"frontend:upgrade": "bun x npm-check-updates --upgrade && bun install",
"frontend:watch": "bun x vite build --watch --minify=false --emptyOutDir false",
"build": "bun run frontend:build && bun run backend:build",
"dev": "bun run backend:dev",
"format": "bun run frontend:format && bun run backend:format",
"format-check": "bun run frontend:format-check && bun run backend:format-check",
"lint": "bun run frontend:lint && bun run backend:lint",
"lint-check": "bun run frontend:lint-check && bun run backend:lint-check",
"serve": "bun run frontend:build && bun run backend:serve",
"start": "bun run frontend:start",
"type-check": "bun run frontend:type-check",
"update": "bun run frontend:update",
"upgrade": "bun run frontend:upgrade && bun run backend:upgrade",
"prepare": "bun x husky",
"test": "bun run backend:test"
},
"license": "MIT",
"devDependencies": {
"@effect/eslint-plugin": "^0.3.2",
"@eslint/compat": "^1.4.1",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.39.1",
"@felte/solid": "^1.2.14",
"@formkit/auto-animate": "^0.9.0",
"@iconify-icon/solid": "^3.0.3",
"@iconify/json": "^2.2.403",
"@iconify/tailwind4": "^1.1.0",
"@kobalte/core": "^0.13.11",
"@kobalte/tailwindcss": "^0.9.0",
"@solidjs/router": "^0.15.3",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.16",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@types/node": "^24.10.0",
"@types/prismjs": "^1.26.5",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"@xstate/store": "^3.11.2",
"ag-grid-community": "^34.3.1",
"daisyui": "^5.4.5",
"date-fns": "^4.1.0",
"effect": "^3.19.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-solid": "^0.14.5",
"globals": "^16.5.0",
"husky": "^9.1.7",
"import-sort-style-module": "^6.0.0",
"lucide-solid": "^0.552.0",
"nanostores": "^1.0.1",
"npm-check-updates": "^19.1.2",
"pocketbase": "^0.26.3",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.1",
"solid-ag-grid": "^0.0.230",
"solid-effect": "^1.0.0",
"solid-highlight": "^0.1.26",
"solid-markdown": "^2.0.14",
"swapy": "^1.0.5",
"tailwindcss": "^4.1.16",
"tailwindcss-intersect": "^2.2.0",
"tailwindcss-motion": "^1.1.1",
"terser": "^5.44.1",
"typescript": "^5.9.3",
"unplugin-icons": "^22.5.0",
"unplugin-lightningcss": "^0.4.3",
"vite": "^7.2.0",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-lqip": "^0.0.5",
"vite-plugin-solid": "^2.11.10",
"vite-plugin-webfont-dl": "^3.11.1",
"yup": "^1.7.1"
},
"dependencies": {
"solid-js": "^1.9.10"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}