-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.63 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
{
"name": "discorage",
"version": "1.0.0",
"description": "Discord bot to store files (with chunking and web support).",
"main": "src/index.ts",
"engines": {
"node": "16.13.1",
"npm": "8.3.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "ts-node src/index.ts",
"dev": "ts-node-dev src/index.ts",
"start": "node dist/index.js",
"build": "cd src && copyfiles views/**/* ../dist && copyfiles public/**/* ../dist && cd ../dist && mkdir -p data && tsc",
"watch": "tsc -w"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.24.0",
"common-tags": "^1.8.2",
"consola": "^2.15.3",
"copyfiles": "^2.4.1",
"cors": "^2.8.5",
"discord-akairo": "github:discord-akairo/discord-akairo",
"discord.js": "github:discordjs/discord.js",
"discordjs-button-pagination": "^1.0.7",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.2",
"glob": "^7.2.0",
"mongoose": "^6.1.3",
"multer": "^1.4.4",
"mustache": "^4.2.0",
"pretty-bytes": "^5.6.0"
},
"devDependencies": {
"@types/common-tags": "^1.8.1",
"@types/express": "^4.17.13",
"@types/glob": "^7.2.0",
"@types/multer": "^1.4.7",
"@types/mustache": "^4.1.2",
"@types/node": "^17.0.4",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MaheshNat/Discorage.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/MaheshNat/Discorage/issues"
},
"homepage": "https://github.com/MaheshNat/Discorage#readme"
}