forked from synzen/MonitoRSS-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
55
56
{
"name": "discord.rss-web",
"version": "0.0.1",
"description": "Website for Discord.RSS",
"main": "index.js",
"dependencies": {
"@hapi/joi": "^17.1.1",
"compression": "^1.7.4",
"connect-redis": "^3.4.2",
"discord.js": "^12.0.2",
"discord.rss": "github:synzen/discord.rss#dev",
"express": "^4.17.1",
"express-joi-validation": "^4.0.3",
"express-rate-limit": "^4.0.4",
"express-session": "^1.17.0",
"express-socket.io-session": "^1.3.5",
"express-ws": "^4.0.0",
"moment": "^2.24.0",
"mongoose": "^5.9.6",
"morgan": "^1.10.0",
"node-fetch": "^2.6.0",
"pino": "^5.17.0",
"pino-pretty": "^3.6.1",
"redis": "^2.8.0",
"request": "^2.88.2",
"request-ip": "^2.1.3",
"simple-oauth2": "^2.5.2"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"eslint": "^6.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"nock": "^10.0.6",
"node-mocks-http": "^1.8.1",
"supertest": "^4.0.2"
},
"engines": {
"node": "12.x"
},
"scripts": {
"start": "node server.js",
"postinstall": "npm run pull-dev",
"pull-dev": "git pull origin dev && npm update discord.rss --no-save",
"test": "jest --detectOpenHandles",
"test-watch": "jest --detectOpenHandles --watch",
"eslint": "eslint --fix ."
},
"author": "synzen",
"license": "MIT"
}