-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.39 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
{
"name": "psych2go-bot",
"version": "0.0.1",
"description": "DiscordJS bot used in Psych2Go Discord server!",
"main": "dist/index.js",
"scripts": {
"start": "node .",
"build": "tsc && yarn copy-files",
"build:clean": "yarn clean && yarn build",
"build:test": "tsc --noEmit",
"dev": "nodemon",
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 2 \"src/asset/**/*\" \"dist/asset/\"",
"lint": "prettier --check src/",
"format": "prettier --write src/",
"lint:root": "prettier --check .",
"format:root": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/psych2go-devs/psych2go-bot.git"
},
"author": "Psych2Go-Bot Contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/psych2go-devs/psych2go-bot"
},
"homepage": "https://github.com/psych2go-devs/psych2go-bot",
"dependencies": {
"axios": "^0.25.0",
"discord.js": "^14.13.0",
"dotenv": "^14.3.0",
"format-message": "^6.2.3",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"youtube-notify": "^2.0.2"
},
"devDependencies": {
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.12",
"copyfiles": "^2.4.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^5.2.2",
"yarn": "^1.22.17"
},
"engines": {
"node": ">=16.11.0",
"yarn": ">=1.22.19"
}
}