-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.22 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
{
"name": "nodejs-express-sequelize-postgre",
"version": "1.0.0",
"description": "Node.js Rest Apis with Express, Sequelize & Postgre",
"main": "server.js",
"scripts": {
"start": "nodemon server.js",
"seed": "node_modules/.bin/sequelize db:seed:all",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"nodejs",
"express",
"rest",
"api",
"sequelize",
"pg"
],
"author": "tegerdy",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"delay": "^5.0.0",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"fancy-log": "^1.3.3",
"fast-safe-stringify": "^2.0.7",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"multer": "^1.4.2",
"node-cron": "^2.0.3",
"nodemailer": "^6.5.0",
"nodemon": "^2.0.7",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"qs": "^6.9.6",
"querystring": "^0.2.1",
"request": "^2.88.2",
"sequelize": "^5.21.2",
"shortid": "^2.2.16",
"socket.io": "^3.0.0",
"uuid": "^3.3.2",
"validate": "^5.1.0",
"x-xss-protection": "^2.0.0"
},
"devDependencies": {
"sequelize-cli": "^6.2.0"
}
}