-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.07 KB
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
{
"name": "kornoha-bot-v2",
"version": "0.3.0",
"description": "4fun discord bot",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/VinicinhuSZ/kornohaBot-Remastered.git"
},
"contributors": [
"Vinicius Prado Cavagna",
"João Pedro Ribeiro da Silva"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/VinicinhuSZ/kornohaBot-Remastered/issues"
},
"homepage": "https://github.com/VinicinhuSZ/kornohaBot-Remastered#readme",
"dependencies": {
"@ev-fns/spawn": "^0.1.2",
"discord.js": "^12.5.1",
"dotenv": "^10.0.0",
"dotenv-safe": "^8.2.0",
"fs-extra": "^10.0.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.1"
},
"scripts": {
"dev": "nodemon src/index.js",
"start": "node src/index.js",
"prepare": "husky install",
"docker-build": "./.docker-build",
"docker-push": "./.docker-push"
},
"lint-staged": {
"*.js": [
"prettier --check"
]
}
}