-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.49 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
{
"name": "bot-info",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "pm2-runtime start ecosystem.config.js --env production",
"start:dev": "nodemon ./src/index.js --exec babel-node",
"start:debug": "nodemon --inspect ./src/index.js --exec babel-node",
"build": "npm run clean && babel src --out-dir dist",
"fix": "eslint --fix ./src",
"clean": "rimraf ./dist",
"typeorm": "babel-node ./node_modules/typeorm/cli.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.19.2",
"date-fns": "^2.15.0",
"date-fns-tz": "^1.0.10",
"discord.js": "^12.0.2",
"dotenv": "^8.2.0",
"mongoose": "^5.10.5",
"pg": "^8.0.3",
"pm2": "^4.4.0",
"typeorm": "^0.2.24"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/preset-env": "^7.9.6",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.3",
"rimraf": "^3.0.2"
}
}