-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.61 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.61 KB
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
{
"name": "api-vision",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "node ace serve --watch",
"build": "node ace build --production",
"start": "node server.js",
"test": "node ace test",
"coverage": "nyc --reporter=text-summary npm run test",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"format": "prettier --config .prettierrc '**/*.ts' --write",
"prepare": "husky install"
},
"devDependencies": {
"@adonisjs/assembler": "^5.9.5",
"@faker-js/faker": "^7.6.0",
"@japa/preset-adonis": "^1.2.0",
"@japa/runner": "^2.2.2",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"adonis-preset-ts": "^2.1.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-adonis": "^2.1.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"nyc": "^15.1.0",
"pino-pretty": "^9.1.1",
"prettier": "^2.7.1",
"typescript": "~4.9",
"youch": "^3.2.2",
"youch-terminal": "^2.1.5"
},
"dependencies": {
"@adonisjs/ally": "^4.1.5",
"@adonisjs/auth": "^8.2.3",
"@adonisjs/bouncer": "^2.3.0",
"@adonisjs/core": "^5.8.9",
"@adonisjs/lucid": "^18.2.0",
"@adonisjs/mail": "^8.1.2",
"@adonisjs/repl": "^3.1.11",
"@adonisjs/view": "^6.2.0",
"adonis5-scheduler": "^2.0.2",
"adonis5-swagger": "1.4.1",
"luxon": "^3.1.0",
"mjml": "^4.13.0",
"pg": "^8.8.0",
"phc-bcrypt": "^1.0.8",
"proxy-addr": "^2.0.7",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.21",
"uuid": "^9.0.0"
}
}