-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.2 KB
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
{
"name": "express-node-template",
"version": "1.0.0",
"main": "index.js",
"author": "ThuanNgo",
"license": "MIT",
"scripts": {
"server": "nodemon --exec babel-node src/app.js",
"worker": "nodemon --exec babel-node src/worker.js",
"dev": "concurrently 'yarn server' 'yarn worker'"
},
"dependencies": {
"bcrypt": "^5.0.1",
"bullmq": "^1.86.7",
"celebrate": "^15.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.20.1",
"winston": "^3.8.0"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/node": "^7.17.10",
"@babel/preset-env": "^7.18.2",
"babel-plugin-module-resolver": "^4.1.0",
"concurrently": "^7.2.2",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"sequelize-cli": "^6.4.1"
}
}