-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.01 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
78
79
80
81
{
"name": "it-manager-server",
"version": "1.0.4",
"private": true,
"scripts": {
"dev": "node ace serve --watch",
"build": "node ace build --production",
"start": "cd build && node server.js",
"lint": "eslint .",
"format": "prettier --write ./**/*.ts",
"test:functional": "node ace test functional",
"test": "node ace test",
"coverage": "nyc yarn test",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"plugin:adonis/typescriptApp",
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": [
"error"
],
"@typescript-eslint/naming-convention": "off"
}
},
"eslintIgnore": [
"build"
],
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"useTabs": false,
"quoteProps": "consistent",
"bracketSpacing": true,
"arrowParens": "always",
"printWidth": 100
},
"devDependencies": {
"@esm2cjs/execa": "^6.1.1-cjs.1",
"@faker-js/faker": "^7.6.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@japa/preset-adonis": "^1.2.0",
"@japa/runner": "^2.5.1",
"@types/rimraf": "^4.0.5",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-adonis": "^2.1.1",
"eslint-plugin-prettier": "^4.2.1",
"git-commit-msg-linter": "^4.9.3",
"husky": "^8.0.3",
"nyc": "^15.1.0",
"pino-pretty": "^10.0.0",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"youch": "^3.2.3",
"youch-terminal": "^2.2.0"
},
"dependencies": {
"@adonisjs/assembler": "^5.9.5",
"@adonisjs/auth": "^8.2.3",
"@adonisjs/bouncer": "^2.3.0",
"@adonisjs/core": "^5.9.0",
"@adonisjs/lucid": "^18.3.0",
"@adonisjs/repl": "^3.1.0",
"adonis-preset-ts": "^2.1.0",
"luxon": "^3.3.0",
"pg": "^8.10.0",
"phc-argon2": "^1.1.4",
"proxy-addr": "^2.0.7",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.21",
"sqlite3": "^5.1.6",
"typescript": "^5.0.3"
}
}