-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.35 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "API-PeruibeTec",
"version": "2.0.0",
"description": "The repository responsible for the PeruibeTec application server",
"repository": "https://github.com/PeruibeTEC/Server-v2.git",
"author": "hmartiins <[email protected]>",
"license": "GNU",
"private": true,
"scripts": {
"dev": "node ace serve --watch",
"tests": "node -r @adonisjs/assembler/build/register japaFile.ts",
"coverage": "nyc npm run tests",
"coverage-html": "npx nyc report --reporter html --reporter text -t .nyc_output --report-dir .nyc_output/summary",
"build": "node ace build --production",
"start": "node server.js",
"lint": "eslint . --ext=.ts",
"format": "prettier --write ."
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@adonisjs/assembler": "^5.3.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/handlebars": "^4.1.0",
"@types/nodemailer": "^6.4.4",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"adonis-preset-ts": "^2.1.0",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"execa": "^5.1.1",
"get-port": "5.1.1",
"husky": "^4.3.8",
"japa": "^3.1.1",
"nyc": "^15.1.0",
"pino-pretty": "^7.0.1",
"prettier": "^2.4.1",
"supertest": "^6.1.6",
"typescript": "~4.2",
"youch": "^2.2.2",
"youch-terminal": "^1.1.1"
},
"dependencies": {
"@adonisjs/auth": "^8.0.9",
"@adonisjs/core": "^5.3.4",
"@adonisjs/lucid": "^16.2.1",
"@adonisjs/repl": "^3.1.6",
"argon2": "^0.28.2",
"aws-sdk": "^2.1009.0",
"handlebars": "^4.7.7",
"luxon": "^2.0.2",
"nodemailer": "^6.7.0",
"pg": "^8.7.1",
"phc-argon2": "^1.1.2",
"proxy-addr": "^2.0.7",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.20",
"uuid": "^8.3.2"
}
}