-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.34 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
{
"name": "alfredbotler",
"version": "1.0.0",
"description": "Custom bot for the Construct Community Discord Server",
"private": true,
"main": "dist/app.js",
"scripts": {
"start": "./node_modules/.bin/pm2 start ecosystem.config.js",
"watch": "tsc -w",
"dev": "nodemon ./dist/index.js",
"build": "cross-env NODE_ENV=production tsc",
"lint": "eslint .",
"test": "cross-env NODE_ENV=test ava tests/test1.js",
"repl": "cross-env NODE_ENV=development node repl.js"
},
"author": "Armaldio",
"license": "MIT",
"homepage": "https://alfred.armaldio.xyz",
"dependencies": {
"cheerio": "^1.0.0-rc.9",
"chrono-node": "^2.2.7",
"cross-env": "^7.0.3",
"date.js": "^0.3.3",
"dayjs": "^1.10.5",
"discord.js": "^12.5.3",
"discord.js-commando": "https://github.com/discordjs/Commando",
"dotenv": "^10.0.0",
"eventemitter3": "^4.0.7",
"firebase": "^8",
"got": "^11.8.2",
"pm2": "^5.0.0",
"rollbar": "^2.22.0",
"source-map-support": "^0.5.19",
"typescript": "^4.2.4"
},
"devDependencies": {
"@types/cheerio": "^0.22.29",
"@types/eslint": "^7.2.13",
"@types/nodemon": "^1.19.0",
"ava": "^3.15.0",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"nodemon": "^2.0.7",
"ts-node-dev": "^1.1.6"
}
}