-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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
{
"name": "donation-tracker",
"version": "0.2.0",
"description": "A easy to use and open source donation tracker for speedrunning marathons.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"config": "json-schema-defaults configschema.json > config.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/indiethon/donation-tracker.git"
},
"author": "nicnacnic",
"license": "MIT",
"bugs": {
"url": "https://github.com/indiethon/donation-tracker/issues"
},
"homepage": "https://github.com/indiethon/donation-tracker#readme",
"dependencies": {
"bcrypt-nodejs": "^0.0.3",
"better-logging": "^4.6.0",
"cors": "^2.8.5",
"ejs": "^3.1.8",
"express": "^4.17.2",
"express-ipn": "^1.0.3",
"json-schema-defaults": "^0.4.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.3",
"mongoose": "^6.3.1",
"mongoose-unique-validator": "github:trading-peter/mongoose-unique-validator",
"node-cache": "^5.1.2",
"node-cron": "^3.0.2",
"node-fetch": "^2.6.7",
"node-localstorage": "^2.2.1",
"nodemailer": "^6.9.0",
"tzdata": "^1.0.30",
"uuid": "^8.3.2",
"ws": "^8.8.1"
}
}