-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.22 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
{
"name": "hello-world",
"version": "0.0.0",
"private": true,
"license": "UNLICENSED",
"type": "module",
"imports": {
"#controllers/*": "./app/controllers/*.js",
"#exceptions/*": "./app/exceptions/*.js",
"#models/*": "./app/models/*.js",
"#mails/*": "./app/mails/*.js",
"#services/*": "./app/services/*.js",
"#listeners/*": "./app/listeners/*.js",
"#events/*": "./app/events/*.js",
"#middleware/*": "./app/middleware/*.js",
"#validators/*": "./app/validators/*.js",
"#providers/*": "./providers/*.js",
"#policies/*": "./app/policies/*.js",
"#abilities/*": "./app/abilities/*.js",
"#database/*": "./database/*.js",
"#start/*": "./start/*.js",
"#tests/*": "./tests/*.js",
"#config/*": "./config/*.js"
},
"scripts": {
"build": "node ace build",
"dev": "node ace serve --hmr",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"prepare": "husky || true",
"start": "node bin/server.js",
"test": "node ace test",
"typecheck": "tsc --noEmit"
},
"lint-staged": {
"*": "prettier -w --ignore-unknown"
},
"prettier": "@solvro/config/prettier",
"dependencies": {
"@adonisjs/auth": "^9.3.1",
"@adonisjs/core": "^6.17.2",
"@adonisjs/cors": "^2.2.1",
"@adonisjs/lucid": "^21.6.0",
"@vinejs/vine": "^3.0.0",
"luxon": "^3.5.0",
"pg": "^8.13.3",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@adonisjs/assembler": "^7.8.2",
"@adonisjs/eslint-config": "^2.0.0",
"@adonisjs/prettier-config": "^1.4.0",
"@adonisjs/tsconfig": "^1.4.0",
"@commitlint/cli": "^19.7.1",
"@japa/api-client": "^3.0.3",
"@japa/assert": "^4.0.1",
"@japa/plugin-adonisjs": "^4.0.0",
"@japa/runner": "^4.2.0",
"@solvro/config": "^1.13.4",
"@swc/core": "1.10.7",
"@types/luxon": "^3.4.2",
"@types/node": "^22.13.2",
"eslint": "^9.20.1",
"hot-hook": "^0.4.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"pino-pretty": "^13.0.0",
"prettier": "^3.5.0",
"ts-node-maintained": "^10.9.5",
"typescript": "~5.7"
},
"hotHook": {
"boundaries": [
"./app/controllers/**/*.ts",
"./app/middleware/*.ts"
]
}
}