-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.31 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
{
"name": "fireworker",
"version": "1.2.0",
"description": "Send and recieve files securely",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec ./tests/ --exit",
"coverage": "mocha ./tests/ -R mocha-lcov-reporter | `npm bin`/coveralls.js",
"dev": "nodemon index.js",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JSitter/fireworker.git"
},
"author": "Justin Sitter",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/JSitter/fireworker/issues"
},
"homepage": "https://github.com/JSitter/fireworker#readme",
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"crypto": "^1.0.1",
"dotenv": "^9.0.2",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-handlebars": "^5.3.2",
"generate-password": "^1.6.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^5.12.9",
"nodemailer": "^6.6.0",
"nodemailer-mailgun-transport": "^2.1.3",
"stripe": "^8.148.0",
"twilio": "^3.62.0"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^2.0.7",
"supertest": "^3.1.0"
}
}