-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 996 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
{
"name": "node-top-reddit",
"version": "1.1.1",
"repository": "https://github.com/joenas/node-top-reddit",
"author": "Jon Neverland",
"license": "MIT",
"private": true,
"main": "src/cron.js",
"scripts": {
"dev": "./node_modules/.bin/nodemon ./src/cron.js",
"start": "node ./src/cron.js",
"lint:eslint": "eslint --ignore-path .gitignore",
"lint:eslint:fix": "eslint --ignore-path .gitignore --fix .",
"lint": "npm run lint:eslint -- . ",
"build:arm": "./build.sh"
},
"keywords": [],
"dependencies": {
"cron": "^2.1.0",
"dotenv": "^8.2.0",
"node-fetch": "^2.6.7",
"pino": "^6.7.0",
"redis": "^4.0.0-rc.2",
"yaml": "^2.0.0-8"
},
"devDependencies": {
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.19",
"pino-pretty": "^4.3.0",
"prettier": "^2.0.5"
}
}