This repository was archived by the owner on Jan 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.86 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.86 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "server",
"version": "1.0.0",
"private": true,
"scripts": {
"test": "node -r @adonisjs/assembler/build/register japaFile.ts",
"build": "node ace build --production",
"start": "node server.js",
"dev": "node ace serve --watch",
"lint": "eslint . --ext=.ts",
"format": "prettier --write .",
"prepare": "husky install",
"commit": "cz"
},
"engines": {
"node": "^14.15.5",
"npm": "^7.17"
},
"devDependencies": {
"@adonisjs/assembler": "^5.3.6",
"@types/supertest": "^2.0.11",
"adonis-preset-ts": "^2.1.0",
"chalk": "^4.1.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-adonis": "^1.3.3",
"eslint-plugin-prettier": "^3.4.0",
"execa": "^5.1.1",
"get-port": "^5.1.1",
"husky": "^6.0.0",
"japa": "^3.1.1",
"pino-pretty": "^4.8.0",
"prettier": "^2.3.2",
"supertest": "^6.1.6",
"typescript": "~4.4",
"youch": "^2.2.2",
"youch-terminal": "^1.1.1"
},
"dependencies": {
"@adonisjs/attachment-lite": "^1.0.1",
"@adonisjs/auth": "^8.0.9",
"@adonisjs/bouncer": "^2.2.5",
"@adonisjs/core": "~5.3.2",
"@adonisjs/lucid": "^16.0.0",
"@adonisjs/mail": "^7.2.4",
"@adonisjs/repl": "^3.1.6",
"@adonisjs/session": "^6.1.2",
"@adonisjs/view": "^6.1.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@poppinss/utils": "^3.2.0",
"adonis-lucid-soft-deletes": "^1.3.2",
"luxon": "^2.0.2",
"pg": "^8.7.1",
"phc-argon2": "^1.1.2",
"proxy-addr": "^2.0.7",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.19",
"validator": "^13.6.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": [
"npm run lint"
]
}
}