summaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'package.json')
-rw-r--r--package.json38
1 files changed, 20 insertions, 18 deletions
diff --git a/package.json b/package.json
index bd43690..41e31e7 100644
--- a/package.json
+++ b/package.json
@@ -18,29 +18,33 @@
18 "license": "MIT License", 18 "license": "MIT License",
19 "scripts": { 19 "scripts": {
20 "prepare": "is-ci || husky", 20 "prepare": "is-ci || husky",
21 "dev": "cross-env-shell ENV_PATH=.env.development node ace serve --watch", 21 "dev": "node ace serve --watch",
22 "migrate": "cross-env-shell ENV_PATH=.env.development node ace migration:run", 22 "migrate": "node ace migration:run",
23 "refresh": "cross-env-shell ENV_PATH=.env.development node ace migration:refresh", 23 "refresh": "node ace migration:refresh",
24 "status": "cross-env-shell ENV_PATH=.env.development node ace migration:status", 24 "status": "node ace migration:status",
25 "build": "node ace build --production", 25 "build": "node ace build",
26 "start": "cross-env-shell ENV_PATH=.env node bin/server.js", 26 "start": "node bin/server.js",
27 "test": "cross-env-shell ENV_PATH=.env.test node ace test", 27 "test": "node ace test",
28 "typecheck": "tsc --noEmit", 28 "typecheck": "tsc --noEmit",
29 "lint": "eslint \"**/*.{js,ts}\"", 29 "lint": "eslint .",
30 "lint:fix": "pnpm lint --fix", 30 "lint:fix": "pnpm lint --fix",
31 "reformat-files": "prettier --write .", 31 "reformat-files": "prettier --write .",
32 "prepare-code": "pnpm typecheck && pnpm lint:fix && pnpm reformat-files && pnpm test" 32 "prepare-code": "pnpm typecheck && pnpm lint:fix && pnpm reformat-files && pnpm test"
33 }, 33 },
34 "imports": { 34 "imports": {
35 "#app/*": "./app/*.js",
35 "#controllers/*": "./app/Controllers/*.js", 36 "#controllers/*": "./app/Controllers/*.js",
36 "#exceptions/*": "./app/Exceptions/*.js",
37 "#models/*": "./app/Models/*.js", 37 "#models/*": "./app/Models/*.js",
38 "#services/*": "./app/services/*.js",
39 "#listeners/*": "./app/listeners/*.js",
40 "#events/*": "./app/events/*.js",
38 "#middleware/*": "./app/Middleware/*.js", 41 "#middleware/*": "./app/Middleware/*.js",
42 "#validators/*": "./app/validators/*.js",
39 "#database/*": "./database/*.js", 43 "#database/*": "./database/*.js",
40 "#types/*": "./types/*.js",
41 "#start/*": "./start/*.js",
42 "#tests/*": "./tests/*.js", 44 "#tests/*": "./tests/*.js",
43 "#config/*": "./config/*.js" 45 "#start/*": "./start/*.js",
46 "#config/*": "./config/*.js",
47 "#types/*": "./types/*.js"
44 }, 48 },
45 "devDependencies": { 49 "devDependencies": {
46 "@adonisjs/assembler": "7.1.1", 50 "@adonisjs/assembler": "7.1.1",
@@ -49,6 +53,8 @@
49 "@adonisjs/prettier-config": "1.2.1", 53 "@adonisjs/prettier-config": "1.2.1",
50 "@adonisjs/tsconfig": "1.2.1", 54 "@adonisjs/tsconfig": "1.2.1",
51 "@adonisjs/vite": "2.0.2", 55 "@adonisjs/vite": "2.0.2",
56 "@japa/api-client": "2.0.2",
57 "@japa/assert": "2.1.0",
52 "@japa/plugin-adonisjs": "3.0.0", 58 "@japa/plugin-adonisjs": "3.0.0",
53 "@japa/runner": "3.1.1", 59 "@japa/runner": "3.1.1",
54 "@swc/core": "1.4.0", 60 "@swc/core": "1.4.0",
@@ -62,7 +68,6 @@
62 "@types/uuid": "9.0.8", 68 "@types/uuid": "9.0.8",
63 "@typescript-eslint/eslint-plugin": "6.21.0", 69 "@typescript-eslint/eslint-plugin": "6.21.0",
64 "@typescript-eslint/parser": "6.21.0", 70 "@typescript-eslint/parser": "6.21.0",
65 "cross-env": "7.0.3",
66 "eslint": "8.56.0", 71 "eslint": "8.56.0",
67 "eslint-plugin-import": "2.29.1", 72 "eslint-plugin-import": "2.29.1",
68 "eslint-plugin-unicorn": "51.0.1", 73 "eslint-plugin-unicorn": "51.0.1",
@@ -83,6 +88,7 @@
83 "@adonisjs/shield": "8.1.1", 88 "@adonisjs/shield": "8.1.1",
84 "@adonisjs/static": "1.1.1", 89 "@adonisjs/static": "1.1.1",
85 "@adonisjs/validator": "13.0.2", 90 "@adonisjs/validator": "13.0.2",
91 "@aws-sdk/client-ses": "3.511.0",
86 "adonis5-jwt": "github:SpecialAro/adonis5-jwt#34941c10adcf89583a40767552b994ea499b92e3", 92 "adonis5-jwt": "github:SpecialAro/adonis5-jwt#34941c10adcf89583a40767552b994ea499b92e3",
87 "bcrypt": "5.1.1", 93 "bcrypt": "5.1.1",
88 "edge.js": "6.0.1", 94 "edge.js": "6.0.1",
@@ -103,11 +109,7 @@
103 }, 109 },
104 "pnpm": { 110 "pnpm": {
105 "allowedDeprecatedVersions": { 111 "allowedDeprecatedVersions": {
106 "@npmcli/move-file": "1.1.2", 112 "@npmcli/move-file": "1.1.2"
107 "@types/pino-pretty": "5.0.0",
108 "@types/pino-std-serializers": "4.0.0",
109 "cuid": "2.1.8",
110 "querystring": "0.2.0"
111 } 113 }
112 }, 114 },
113 "type": "module" 115 "type": "module"