forked from adonisjs-community/adonis-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.55 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
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
{
"name": "adonis-packages",
"type": "module",
"version": "0.0.0",
"private": true,
"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.0.0-3",
"@adonisjs/core": "6.9.0",
"@adonisjs/inertia": "1.0.0-27",
"@adonisjs/lucid": "20.6.0",
"@adonisjs/session": "7.4.0",
"@adonisjs/shield": "8.1.1",
"@adonisjs/static": "^1.1.1",
"@adonisjs/vite": "3.0.0-11",
"@formkit/auto-animate": "^0.8.2",
"@headlessui/vue": "^1.7.22",
"@inertiajs/vue3": "^1.0.16",
"@poppinss/utils": "^6.7.3",
"@resvg/resvg-js": "^2.6.2",
"@sindresorhus/slugify": "^2.2.1",
"@vinejs/vine": "^2.0.0",
"@vue/server-renderer": "^3.4.27",
"@vueuse/core": "^10.9.0",
"cron": "^3.1.7",
"edge.js": "^6.0.2",
"floating-vue": "5.2.2",
"github-markdown-css": "^5.5.1",
"globby": "^14.0.1",
"highlight.js": "^11.9.0",
"js-yaml": "^4.1.0",
"luxon": "^3.4.4",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^8.6.7",
"millify": "^6.1.0",
"p-limit": "^4.0.0",
"reflect-metadata": "^0.2.2",
"sanitize-html": "^2.13.0",
"satori": "^0.10.13",
"satori-html": "^0.3.2",
"sitemap": "^7.1.1",
"sqlite3": "^5.1.7",
"vue": "^3.4.27"
},
"devDependencies": {
"@adonisjs/assembler": "7.5.2",
"@adonisjs/tsconfig": "^1.3.0",
"@faker-js/faker": "^8.4.1",
"@iconify/json": "^2.2.210",
"@iconify/utils": "^2.1.23",
"@japa/api-client": "^2.0.3",
"@japa/assert": "^3.0.0",
"@japa/browser-client": "^2.0.3",
"@japa/file-system": "^2.3.0",
"@japa/plugin-adonisjs": "^3.0.1",
"@japa/runner": "^3.1.4",
"@julr/tooling-configs": "2.1.0",
"@julr/unocss-preset-forms": "^0.1.0",
"@swc/core": "^1.5.6",
"@types/js-yaml": "^4.0.9",
"@types/luxon": "^3.4.2",
"@types/markdown-it": "^14.1.1",
"@types/node": "^20.12.12",
"@types/sanitize-html": "^2.11.0",
"@unocss/reset": "^0.60.2",
"@vitejs/plugin-vue": "^5.0.4",
"eslint": "^8.57.0",
"hot-hook": "^0.2.6",
"pino-pretty": "^11.0.0",
"playwright": "^1.44.0",
"postcss-nested": "^6.0.1",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.4.5",
"unocss": "^0.60.2",
"unocss-preset-radix": "^2.5.5",
"vite": "^5.2.11",
"vue-tsc": "^2.0.17"
},
"prettier": "@julr/tooling-configs/prettier",
"hotHook": {
"boundaries": [
"./app/controllers/**/*.ts",
"./app/middleware/*.ts"
]
}
}