-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.18 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
{
"name": "patreon-pledges-api",
"version": "1.0.0",
"description": "A simple API to list the active pledges for a given patreon campaign.",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"lint": "eslint --fix src"
},
"keywords": [],
"author": "CJ R. <cj@null.computer> (https://w3cj.now.sh)",
"repository": {
"type": "git",
"url": "https://github.com/CodingGarden/patreon-pledges-api.git"
},
"license": "MIT",
"dependencies": {
"@feathersjs/errors": "^4.5.15",
"@feathersjs/express": "^4.5.15",
"@feathersjs/feathers": "^4.5.15",
"@feathersjs/socketio": "^4.5.15",
"axios": "^0.27.2",
"cors": "^2.8.5",
"date-fns": "^2.28.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"helmet": "^5.1.0",
"jws": "^4.0.0",
"monk": "^7.3.4",
"morgan": "^1.10.0",
"serve-favicon": "^2.5.0",
"simple-icons": "^7.5.0",
"socket.io-client": "^2.3.0",
"tmi.js": "^1.9.0-pre.1",
"twitchps": "^1.6.0"
},
"devDependencies": {
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^2.0.19"
}
}