-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.4 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
{
"name": "mindset-tkc-api",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "node ace serve --watch",
"build": "node ace build --production",
"start": "node server.js",
"lint": "eslint . --ext=.ts",
"format": "prettier --write .",
"db:reset": "node ace migration:rollback && node ace migration:run && node ace db:seed",
"docker:server": "node ace migration:run && node server.js"
},
"devDependencies": {
"@adonisjs/assembler": "^5.9.5",
"add": "^2.0.6",
"adonis-preset-ts": "^2.1.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-adonis": "^2.1.1",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.2",
"typescript": "^5.2.2",
"yarn-upgrade-all": "^0.7.2",
"youch": "^3.2.3",
"youch-terminal": "^2.2.2"
},
"dependencies": {
"@adonisjs/auth": "^8.2.3",
"@adonisjs/core": "^5.9.0",
"@adonisjs/lucid": "^18.4.0",
"@adonisjs/mail": "^8.2.1",
"@adonisjs/repl": "^3.1.11",
"@adonisjs/view": "^6.2.0",
"@phc/argon2": "^1.0.9",
"aws-sdk": "^2.1445.0",
"date-fns": "^2.30.0",
"luxon": "^3.4.2",
"pg": "^8.11.3",
"phc-argon2": "^1.1.4",
"pino-pretty": "^10.2.0",
"pretty-list-routes": "^0.0.5",
"proxy-addr": "^2.0.7",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.21",
"tsyringe": "^4.8.0",
"url-parse": "^1.5.10"
}
}