-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 961 Bytes
/
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
{
"name": "teamsoft",
"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"
},
"eslintConfig": {
"extends": [
"plugin:adonis/typescriptApp"
]
},
"eslintIgnore": [
"build"
],
"devDependencies": {
"@adonisjs/assembler": "^5.6.2",
"@japa/preset-adonis": "^1.0.15",
"@japa/runner": "^2.0.7",
"adonis-preset-ts": "^2.1.0",
"eslint": "^8.14.0",
"eslint-plugin-adonis": "^2.1.0",
"pino-pretty": "^7.6.1",
"typescript": "~4.6",
"youch": "^3.1.1",
"youch-terminal": "^2.1.3"
},
"dependencies": {
"@adonisjs/core": "^5.7.5",
"@adonisjs/lucid": "^17.2.0",
"@adonisjs/repl": "^3.1.10",
"luxon": "^2.3.2",
"mysql": "^2.18.1",
"proxy-addr": "^2.0.7",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.21"
}
}