-
-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.81 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.81 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "adonis-packages",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.12.1",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"start": "node bin/server.js",
"build": "node ace build",
"dev": "node ace serve --hmr",
"test": "node ace test",
"lint": "eslint .",
"format": "prettier --write .",
"build:preview": "pnpm build && sed 's/NODE_ENV=development/NODE_ENV=production/' .env > ./build/.env && cp -r ./content ./build/ && cp -r ./tmp ./build/",
"quick:test": "node ace test",
"typecheck:adonis": "tsc --noEmit -p tsconfig.json",
"typecheck:vue": "vue-tsc --noEmit -p inertia/tsconfig.json",
"typecheck": "pnpm typecheck:adonis && pnpm typecheck:vue",
"checks": "pnpm lint && pnpm typecheck"
},
"imports": {
"#controllers/*": "./app/controllers/*.js",
"#exceptions/*": "./app/exceptions/*.js",
"#models/*": "./app/models/*.js",
"#services/*": "./app/services/*.js",
"#listeners/*": "./app/listeners/*.js",
"#events/*": "./app/events/*.js",
"#middleware/*": "./app/middleware/*.js",
"#validators/*": "./app/validators/*.js",
"#start/*": "./start/*.js",
"#config/*": "./config/*.js",
"#types/*": "./types/*.js"
},
"dependencies": {
"@adonisjs/cache": "^1.1.3",
"@adonisjs/core": "^6.18.0",
"@adonisjs/inertia": "^3.1.1",
"@adonisjs/lucid": "^21.6.1",
"@adonisjs/session": "^7.5.1",
"@adonisjs/shield": "^8.2.0",
"@adonisjs/static": "^1.1.1",
"@adonisjs/vite": "^4.0.0",
"@fontsource-variable/instrument-sans": "^5.2.6",
"@formkit/auto-animate": "^0.8.2",
"@headlessui/vue": "^1.7.23",
"@inertiajs/vue3": "^2.0.12",
"@poppinss/utils": "^6.9.4",
"@resvg/resvg-js": "^2.6.2",
"@sindresorhus/slugify": "^2.2.1",
"@vinejs/vine": "^3.0.1",
"@vue/server-renderer": "^3.5.16",
"@vueuse/core": "^13.3.0",
"better-sqlite3": "^11.10.0",
"cron": "^4.3.1",
"edge.js": "^6.2.1",
"floating-vue": "^5.2.2",
"github-markdown-css": "^5.8.1",
"globby": "^14.1.0",
"highlight.js": "^11.11.1",
"js-yaml": "^4.1.0",
"luxon": "^3.6.1",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"millify": "^6.1.0",
"motion-v": "^1.2.1",
"p-limit": "^6.2.0",
"reflect-metadata": "^0.2.2",
"sanitize-html": "^2.17.0",
"satori": "^0.15.2",
"satori-html": "^0.3.2",
"sitemap": "^8.0.0",
"vue": "^3.5.16"
},
"devDependencies": {
"@adonisjs/assembler": "^7.8.2",
"@adonisjs/tsconfig": "^1.4.1",
"@faker-js/faker": "^9.8.0",
"@iconify/json": "^2.2.347",
"@iconify/utils": "^2.3.0",
"@japa/api-client": "^3.1.0",
"@japa/assert": "^4.0.1",
"@japa/browser-client": "^2.1.1",
"@japa/file-system": "^2.3.2",
"@japa/plugin-adonisjs": "^4.0.0",
"@japa/runner": "^4.2.0",
"@julr/tooling-configs": "^4.0.0",
"@julr/unocss-preset-forms": "^2.0.0",
"@swc/core": "^1.12.0",
"@types/js-yaml": "^4.0.9",
"@types/luxon": "^3.6.2",
"@types/markdown-it": "^14.1.2",
"@types/node": "^24.0.0",
"@types/sanitize-html": "^2.16.0",
"@unocss/reset": "^66.1.4",
"@vitejs/plugin-vue": "^5.2.4",
"eslint": "^9.28.0",
"hot-hook": "^0.4.0",
"pino-pretty": "^13.0.0",
"playwright": "^1.53.0",
"postcss-nested": "^7.0.2",
"prettier": "^3.5.3",
"ts-node-maintained": "^10.9.5",
"typescript": "~5.8.3",
"unocss": "^66.1.4",
"unocss-preset-radix": "^2.8.2",
"vite": "^6.3.5",
"vue-tsc": "^2.2.10"
},
"prettier": "@julr/tooling-configs/prettier",
"hotHook": {
"boundaries": [
"./app/controllers/**/*.ts",
"./app/middleware/*.ts"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"better-sqlite3",
"esbuild",
"sqlite3"
]
}
}