generated from alkemyTech/base-ong-server-js
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
49 lines (49 loc) · 1.19 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": "ong-server",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"lint:js": "eslint . --ext .js",
"lint:js:fix": "npm run lint:js -- --fix",
"test": "mocha ./test/*.js",
"prepare": "husky install"
},
"engines": {
"node": ">=0.14"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.137.0",
"@sendgrid/mail": "^7.7.0",
"bcrypt": "^5.0.1",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-fileupload": "^1.4.0",
"express-validator": "^6.13.0",
"http-errors": "~1.6.3",
"jsonwebtoken": "^8.5.1",
"morgan": "~1.9.1",
"mysql2": "^2.3.3",
"nodemon": "^2.0.15",
"sequelize": "^6.19.0",
"sequelize-cli": "6.2.0",
"swagger-jsdoc": "^6.2.5",
"swagger-ui-express": "^4.5.0"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "7.32",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"husky": "7.0.0",
"jest": "27.0.6",
"lint-staged": "11.1.1",
"mocha": "^9.1.3",
"prettier": "2.3.2",
"sequelize-cli": "6.2.0",
"supertest": "^6.1.6"
}
}