-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 852 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 852 Bytes
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
{
"name": "acssupport",
"module": "es2020",
"private": true,
"workspaces": [
"utils",
"functions",
"events"
],
"devDependencies": {
"@types/cron": "^2.0.1",
"@types/lodash": "^4.14.191",
"prettier": "2.8.1",
"typescript": "^4.9.4"
},
"scripts": {
"build": "tsc -p . && node ./dist/index.js",
"start": "node ./dist/index.js",
"dev": "nodemon ./index.ts"
},
"dependencies": {
"axios": "^1.4.0",
"cron": "^2.3.0",
"discord.js": "^14.9.0",
"dotenv": "^16.0.3",
"glob-promise": "^6.0.2",
"lodash": "^4.17.21",
"markprompt": "^0.1.5",
"mongoose": "^6.8.0",
"string-similarity": "^4.0.4",
"tesseract.js": "^4.0.0",
"turbocommons-ts": "^3.8.0"
}
}