Cantilever-Labs/package.json

48 lines
1.2 KiB
JSON
Raw Normal View History

2021-03-25 22:39:13 -07:00
{
"name": "cantilever-labs",
"version": "1.0.0",
"description": "",
"main": "app.js",
2021-03-25 22:39:13 -07:00
"scripts": {
2021-05-03 03:21:15 -07:00
"start:dev": "nodemon app.js",
2021-06-01 22:21:56 -07:00
"start": "node app.js",
2021-06-07 03:09:43 -07:00
"test": "mocha ||true",
"deploy": "npm run build && npm run start"
2021-03-25 22:39:13 -07:00
},
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.907.0",
2021-03-26 06:29:27 -07:00
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
2021-05-16 22:45:42 -07:00
"bootstrap-email": "^1.1.1",
2021-04-01 06:38:27 -07:00
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
2021-05-09 04:31:53 -07:00
"dotenv": "^9.0.1",
2021-03-25 22:39:13 -07:00
"express": "^4.17.1",
2021-05-26 03:05:16 -07:00
"google-auth-library": "^7.0.4",
"grandjs": "^2.2.30",
2021-05-26 03:05:16 -07:00
"gridfs-stream": "^1.1.1",
"handlebars": "^4.7.7",
2021-04-01 06:38:27 -07:00
"jsonwebtoken": "^8.5.1",
2021-05-09 04:31:53 -07:00
"messagebird": "^3.6.1",
2021-04-01 06:38:27 -07:00
"mongoose": "^5.12.2",
2021-05-26 03:05:16 -07:00
"multer": "^1.4.2",
"multer-gridfs-storage": "^4.2.0",
2021-05-27 07:46:20 -07:00
"multer-s3": "^2.9.0",
2021-05-11 07:18:54 -07:00
"nodemailer": "^6.6.0",
"nodemailer-smtp-transport": "^2.7.4",
2021-04-01 06:38:27 -07:00
"passport": "^0.4.1",
"passport-google-oauth": "^2.0.0",
"razorpay": "^2.0.6",
"shortid": "^2.2.16"
2021-03-25 22:39:13 -07:00
},
"devDependencies": {
2021-06-01 22:21:56 -07:00
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"mocha": "^8.4.0",
"nodemon": "^2.0.7",
"supertest": "^6.1.3"
2021-03-25 22:39:13 -07:00
}
2021-06-07 03:09:43 -07:00
}