-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "developer-api-server",
"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",
"start:prod": "node ./build/server.js"
},
"devDependencies": {
"@adonisjs/assembler": "^5.3.0",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"adonis-preset-ts": "^2.1.0",
"commitizen": "^4.2.4",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-adonis": "^2.1.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.8",
"pino-pretty": "^7.6.1",
"prettier": "^2.6.2",
"typescript": "~4.5",
"youch": "^3.1.1",
"youch-terminal": "^2.1.3"
},
"dependencies": {
"@adonisjs/core": "^5.4.0",
"@adonisjs/lucid": "^17.2.0",
"@adonisjs/repl": "^3.1.0",
"luxon": "^2.3.1",
"pg": "^8.7.3",
"proxy-addr": "^2.0.7",
"reflect-metadata": "^0.1.13",
"slugify": "^1.6.5",
"source-map-support": "^0.5.21"
}
}