-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.59 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "node-express-sequelize-boiler-plate",
"version": "1.0.0",
"description": "Nodejs standard/base implementation with eslint sequelize and rabitMQ",
"main": "app.js",
"engines": {
"node": "^10.19.0",
"npm": "^6.9.0"
},
"scripts": {
"start": "nodemon ./bin/server",
"build:dev": "node -e 'require(\"./buildEnv.js\").buildDev()'",
"build:staging": "node -e 'require(\"./buildEnv.js\").buildStaging()'",
"lint": "echo '\n===== STARTING Api linting =====' && eslint --fix --ext .js server/ ; exit 0",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "./deploy.sh"
},
"keywords": [
"NODEJS",
"Node",
"Express",
"ESLINT",
"ES6",
"JAVASCRIPT",
"Node-Sequelize"
],
"author": "Awais Ayub awaisayub149@gmail.com",
"license": "ISC",
"devDependencies": {
"eslint": "^5.12.1",
"eslint-restricted-globals": "^0.2.0",
"nodemon": "^1.18.9",
"pre-commit": "^1.2.2"
},
"pre-commit": [
"lint"
],
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"amqplib": "^0.5.3",
"async": "^2.6.2",
"aws-sdk": "^2.447.0",
"backoff": "^2.5.0",
"bcrypt": "^3.0.4",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"faker": "^4.1.0",
"jsonwebtoken": "^8.5.0",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"nodemailer": "^6.3.0",
"pg": "^7.14.0",
"pg-hstore": "^2.3.2",
"randomstring": "^1.1.5",
"s3fs": "^2.5.0",
"sequelize": "^4.42.0",
"sequelize-cli": "^5.4.0",
"underscore": "^1.9.1",
"uuid": "^3.3.2"
}
}