-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 874 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 874 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": "cutiebot",
"description": "Cutie Club Discord Server Bot",
"repository": "https://github.com/Cutie-Club/cutiebot.git",
"author": {
"name": "Amber Cronin",
"email": "amber@cutieclub.cc"
},
"license": "MIT",
"private": true,
"main": "index.js",
"scripts": {
"fmt": "yarn prettier --write .",
"check-fmt": "yarn prettier --check .",
"dev:start": "yarn deploy-commands && GIT_SHA=$(git rev-parse HEAD) COMMIT_MESSAGE=$(git log --format=%B -n 1 HEAD) nodemon index.js",
"start": "NODE_ENV=production yarn deploy-commands && node index.js",
"deploy-commands": "node deploy-commands.js"
},
"dependencies": {
"better-sqlite3": "^7.5.0",
"chalk": "^3.0.0",
"discord.js": "^14.8.0",
"dotenv": "^16.0.0",
"ms": "^2.1.2"
},
"devDependencies": {
"nodemon": "^2.0.6",
"prettier": "2.7.1"
},
"jest": {
"testEnvironment": "node"
}
}