-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 913 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 913 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
{
"name": "cookie-ts",
"version": "1.1.0",
"description": "Cookie Bot for Yuqicord",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf build && rm -f tsconfig.tsbuildinfo && tsc && tscp",
"prestart": "npm run build",
"start": "node -r dotenv/config .",
"dev": "nodemon -L --ext ts,ejs,css --watch src --exec \"NODE_ENV=dev npm run start | pino-pretty\""
},
"author": "veeru153",
"license": "ISC",
"dependencies": {
"canvas": "^3.0.0",
"discord.js": "^14.13.0",
"dotenv": "^16.0.1",
"ejs": "^3.1.9",
"express": "^4.18.1",
"firebase-admin": "^13.0.2",
"pino": "^8.5.0"
},
"devDependencies": {
"nodemon": "^2.0.19",
"ts-node": "^10.9.1",
"typescript": "5.2.2",
"typescript-cp": "^0.1.7"
},
"engines": {
"node": ">=16.11.0"
}
}