-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 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": "reddit-notifier",
"version": "1.0.0",
"description": "Reddit notifier is a nodejs service that sends user favorite subreddits channels 3 most voted posts",
"main": "index.js",
"scripts": {
"lint:fix": "eslint --fix src",
"start": "node src/index.js",
"start:dev": "DEBUG=express:* nodemon src/index.js",
"test": "jest --collectCoverage",
"test:watch": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomasmax/reddit-notifier.git"
},
"keywords": [
"nodejs",
"javascript",
"reddit",
"rest",
"api"
],
"author": "Tomas Madariaga",
"license": "ISC",
"bugs": {
"url": "https://github.com/tomasmax/reddit-notifier/issues"
},
"homepage": "https://github.com/tomasmax/reddit-notifier#readme",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"jest": "^26.6.3",
"mongodb-memory-server": "^6.9.6",
"nodemon": "^2.0.7",
"supertest": "^6.1.3"
},
"dependencies": {
"@sendgrid/mail": "^7.4.2",
"axios": "^0.21.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.12.0",
"node-schedule": "^2.0.0",
"pug": "^3.0.2"
}
}