-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.73 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
{
"name": "mind-reader",
"version": "0.4.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20.12.1"
},
"scripts": {
"start": "node bin/server.js",
"build": "node ace build",
"dev": "node ace serve --hmr",
"test": "node ace test --force-exit",
"lint": "biome check",
"format": "biome check --write",
"typecheck": "tsc --noEmit & tsc -p inertia --noEmit",
"jobs:run": "node ace scheduler:run"
},
"imports": {
"#config/*": "./config/*.js",
"#core/*": "./src/core/*.js",
"#database/*": "./database/*.js",
"#features/*": "./src/features/*.js",
"#helpers/*": "./src/helpers/*.js",
"#models/*": "./src/models/*.js",
"#shared/*": "./shared/*.js",
"#start/*": "./start/*.js",
"#services/*": "./src/services/*.js",
"#tests/*": "./tests/*.js",
"#types/*": "./src/types/*.js",
"#validators/*": "./src/validators/*.js"
},
"devDependencies": {
"@adonisjs/assembler": "^7.8.2",
"@adonisjs/tsconfig": "^1.4.0",
"@biomejs/biome": "1.9.4",
"@japa/api-client": "^2.0.3",
"@japa/assert": "^3.0.0",
"@japa/browser-client": "^2.0.3",
"@japa/plugin-adonisjs": "^3.0.1",
"@japa/runner": "^3.1.4",
"@swc/core": "^1.7.36",
"@types/luxon": "^3.4.2",
"@types/node": "^20.16.13",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.2",
"autoprefixer": "^10.4.20",
"hot-hook": "^0.2.6",
"pino-pretty": "^11.3.0",
"playwright": "^1.48.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vite": "^5.4.9"
},
"dependencies": {
"@adonisjs/ally": "^5.0.2",
"@adonisjs/auth": "^9.2.3",
"@adonisjs/core": "^6.14.1",
"@adonisjs/cors": "^2.2.1",
"@adonisjs/i18n": "^2.1.1",
"@adonisjs/inertia": "2.0.1",
"@adonisjs/lucid": "^20.6.0",
"@adonisjs/redis": "^8.0.1",
"@adonisjs/session": "^7.5.0",
"@adonisjs/shield": "^8.1.1",
"@adonisjs/static": "^1.1.1",
"@adonisjs/transmit": "^2.0.2",
"@adonisjs/transmit-client": "^1.0.0",
"@adonisjs/vite": "3.0.0-11",
"@inertiajs/react": "^1.2.0",
"@poppinss/utils": "^6.8.3",
"@rlanz/ally-twitch": "^0.1.2",
"@vinejs/vine": "^2.1.0",
"adonisjs-scheduler": "^1.0.5",
"edge.js": "^6.2.0",
"i18next": "^23.16.1",
"luxon": "^3.5.0",
"pg": "^8.13.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^14.1.3",
"reflect-metadata": "^0.2.2",
"unocss": "^0.60.4"
},
"hotHook": {
"boundaries": ["./src/features/**/*.ts", "./src/core/middleware*.ts"]
},
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}