-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2 KB
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
82
83
{
"name": "ravaa",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "node ace serve --watch",
"build": "node ace build --production",
"start": "node server.js",
"test": "node ace test",
"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": 100
},
"devDependencies": {
"@adonisjs/assembler": "^5.9.5",
"@japa/preset-adonis": "^1.2.0",
"@japa/runner": "^2.5.1",
"@types/cheerio": "^0.22.31",
"@types/proxy-addr": "^2.0.0",
"@types/source-map-support": "^0.5.6",
"adonis-preset-ts": "^2.1.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-adonis": "^2.1.1",
"eslint-plugin-prettier": "^4.2.1",
"pino-pretty": "^10.0.0",
"prettier": "^2.8.8",
"sinon": "^15.1.2",
"typescript": "^4.6.4",
"youch": "^3.2.3",
"youch-terminal": "^2.2.0"
},
"dependencies": {
"@adonisjs/auth": "^8.2.3",
"@adonisjs/core": "^5.9.0",
"@adonisjs/drive-s3": "^1.3.2",
"@adonisjs/lucid": "^18.4.0",
"@adonisjs/redis": "^7.3.2",
"@adonisjs/repl": "^3.1.11",
"@dicebear/collection": "^6.0.4",
"@dicebear/core": "^6.0.4",
"@rocketseat/adonis-bull": "^1.0.4",
"@sendgrid/mail": "^7.7.0",
"axios": "^1.4.0",
"cheerio": "^1.0.0-rc.12",
"langchain": "^0.0.99",
"luxon": "^3.3.0",
"mammoth": "^1.6.0",
"pdf-parse": "^1.1.1",
"pg": "^8.11.0",
"proxy-addr": "^2.0.7",
"redis": "^4.6.7",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.21",
"uuid": "^9.0.0"
}
}