-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.74 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"build": "babel app.js -d dist",
"start:prod": "npm run build && node dist/app.js",
"start:dev": "nodemon app.js --exec babel-node --",
"lint": "eslint \"{src,test}/**/*.js\"",
"lint:fix": "eslint . --fix",
"test": "jest --coverage --coverageDirectory=coverage --runInBand --forceExit",
"coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"test:watch": "jest --runInBand --forceExit --watch",
"migrate": "npx sequelize-cli db:migrate"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"faker": "^6.6.6",
"http-status-codes": "^2.2.0",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"moment": "^2.29.4",
"nodemailer": "^6.9.5",
"nodemailer-express-handlebars": "^6.1.0",
"nodemon": "^3.0.1",
"pg": "^8.11.3",
"sequelize": "^6.33.0",
"sequelize-cli": "^6.6.1",
"socket.io": "^4.7.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.22.17",
"@babel/node": "^7.22.19",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.22.15",
"@babel/register": "^7.22.15",
"coveralls-next": "^4.2.0",
"eslint": "^8.51.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.1",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"supertest": "^6.3.3"
}
}