-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.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
{
"name": "cdn-slave",
"version": "1.0.0",
"description": "Upload to Discord's CDN without having to use the Discord app.",
"main": "app.js",
"scripts": {
"build-css": "npx tailwindcss -i ./development/tailwind.css -o ./public/css/index.css -m",
"start": "node app.js",
"watch-node": "nodemon app.js",
"dev": "npm run build-css && npm run watch-node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spinfal/cdn-slave.git"
},
"author": "Spinfal",
"license": "MIT",
"bugs": {
"url": "https://github.com/spinfal/cdn-slave/issues"
},
"homepage": "https://github.com/spinfal/cdn-slave#readme",
"dependencies": {
"axios": "^1.6.7",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"discord.js": "12.5.3",
"ejs": "^3.1.9",
"express": "^4.18.1",
"express-fileupload": "^1.4.2",
"knex": "^3.1.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"pg": "^8.11.3"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}