-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 829 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 829 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
34
35
{
"presets": [
"@babel/preset-env"
],
"name": "sickbot",
"version": "1.0.0",
"description": "",
"main": "./index.ts",
"dependencies": {
"@types/node": "^13.9.2",
"@types/node-fetch": "^2.5.5",
"@types/ws": "^7.2.3",
"babel-preset-env": "^1.7.0",
"core-util-is": "^1.0.2",
"discord.js": "^12.0.2",
"dotenv": "^8.2.0",
"moment": "^2.24.0",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.2",
"ts-node": "^8.8.1",
"typescript": "^3.8.3",
"ws": "^7.2.3"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0"
},
"scripts": {
"prod": "SET NODE_ENV=production&& nodemon index.ts",
"dev": "SET NODE_ENV=development&& nodemon index.ts"
},
"author": "Danilo Mongelli",
"license": "ISC"
}