-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 939 Bytes
/
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
{
"name": "pancake",
"version": "0.0.0",
"description": "Not just a pancake",
"repository": {
"url": "https://github.com/gnehs/pancake-bot",
"type": "git"
},
"main": "index.js",
"scripts": {
"dev": "supervisor -x node index.js",
"start": "node index.js",
"lint": "eslint .",
"test": "npm run lint"
},
"engines": {
"node": ">=8.5.0"
},
"author": "gnehs <[email protected]>",
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"moment": "^2.30.1",
"node-cron": "^3.0.3",
"sharp": "^0.33.4",
"simple-json-db": "^2.0.0",
"telegraf": "^4.16.3",
"text-to-svg": "^3.1.5"
},
"devDependencies": {
"eslint": "^8.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-standard": "^5.0.0",
"supervisor": "^0.12.0"
}
}