-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 1.84 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": "adonis-2fa",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "node ace serve --watch",
"build-test": "node ace build --production",
"build": "node ace build --production",
"start": "node server.js",
"lint": "eslint . --ext=.ts",
"format": "prettier --write ."
},
"eslintConfig": {
"extends": [
"plugin:adonis/typescriptApp",
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": [
"error"
]
}
},
"eslintIgnore": [
"build"
],
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"useTabs": false,
"quoteProps": "consistent",
"bracketSpacing": true,
"arrowParens": "always",
"printWidth": 10
},
"devDependencies": {
"@adonisjs/assembler": "^5.8.1",
"@japa/preset-adonis": "^1.2.0",
"@japa/runner": "^2.2.1",
"@symfony/webpack-encore": "^4.0.0",
"@types/qrcode": "^1.5.0",
"adonis-preset-ts": "^2.1.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-adonis": "^2.1.1",
"eslint-plugin-prettier": "^4.2.1",
"pino-pretty": "^9.1.0",
"prettier": "2.7.1",
"typescript": "~4.6",
"youch": "^3.2.2",
"youch-terminal": "^2.1.5"
},
"dependencies": {
"@adonisjs/auth": "^8.2.2",
"@adonisjs/core": "^5.8.6",
"@adonisjs/lucid": "^18.1.1",
"@adonisjs/repl": "^3.1.11",
"@adonisjs/session": "^6.4.0",
"@adonisjs/shield": "^7.1.0",
"@adonisjs/view": "^6.2.0",
"crypto-random-string": "^3.3.1",
"luxon": "^3.0.3",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"node-2fa": "^2.0.3",
"phc-argon2": "^1.1.3",
"phc-bcrypt": "^1.0.7",
"proxy-addr": "^2.0.7",
"qrcode": "^1.5.1",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.21"
}
}