generated from Snazzah/slash-create-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
53
54
{
"name": "botboy-slash-commands",
"version": "1.0.0",
"description": "Slash commands for BotBoy",
"license": "MIT",
"main": "./dist/index.js",
"scripts": {
"sync": "slash-up sync -e development",
"sync:prod": "slash-up sync -e production",
"start:prod": "npx shx NODE_ENV=production cd dist && node index.js",
"start": "cd dist && node index.js",
"build": "npx rimraf dist && npx tsc",
"dev": "devScript",
"lint": "npx eslint --ext .ts ./src",
"lint:fix": "npx eslint --ext .ts ./src --fix"
},
"devScript": {
"depCheck": false
},
"dependencies": {
"cat-loggr": "^1.1.0",
"common-tags": "^1.8.0",
"cron": "^1.8.2",
"dayjs": "^1.10.6",
"dotenv": "^8.2.0",
"duck-duck-scrape": "^2.1.0",
"fastify": "^3.9.2",
"fuzzy": "^0.1.3",
"html-entities": "^2.3.2",
"lodash.clonedeep": "^4.5.0",
"needle": "^2.6.0",
"slash-create": "^5.0.1",
"turndown": "^7.0.0"
},
"devDependencies": {
"@types/common-tags": "^1.8.0",
"@types/cron": "^1.7.2",
"@types/express": "^4.17.11",
"@types/lodash.clonedeep": "^4.5.6",
"@types/needle": "^2.5.1",
"@types/node": "^14.14.37",
"@types/turndown": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.3.0",
"prettier": "^2.2.1",
"slash-up": "^1.0.6",
"ts-devscript": "^3.0.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}