-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "jwt-demo",
"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 .",
"prepare": "husky install"
},
"devDependencies": {
"@adonisjs/assembler": "^5.3.0",
"adonis-preset-ts": "^2.1.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-adonis": "^2.1.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": ">=6",
"lint-staged": ">=10",
"pino-pretty": "^7.5.1",
"prettier": "^2.5.1",
"typescript": "~4.5",
"youch": "^3.1.1",
"youch-terminal": "^2.1.3"
},
"dependencies": {
"@adonisjs/auth": "^8.0.10",
"@adonisjs/core": "^5.4.0",
"@adonisjs/lucid": "^16.3.2",
"@adonisjs/repl": "^3.1.0",
"adonis5-jwt": "^1.1.4",
"luxon": "^2.3.1",
"phc-argon2": "^1.1.3",
"proxy-addr": "^2.0.7",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.21",
"sqlite3": "^5.0.2"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}