-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.75 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
{
"name": "ITP",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node index.js",
"test": "cross-env NODE_ENV=test jest --verbose",
"dev": "cross-env NODE_ENV=development nodemon index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build:ui": "rm -rf build && cd ./frontend/ && npm run build && cp -r build ./.. && cd ./frontend/ && rm -rf build",
"push": "git push origin staging-dinal && git push mrmihi staging-dinal && git push backup staging-dinal"
},
"author": "",
"license": "ISC",
"dependencies": {
"@sentry/node": "^7.48.0",
"@sentry/tracing": "^7.48.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"helmet": "^6.1.5",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.3",
"mongoose-aggregate-paginate-v2": "^1.0.6",
"mongoose-paginate-v2": "^1.7.1",
"mongoose-unique-validator": "^4.0.0",
"morgan": "^1.10.0",
"nodemailer": "^6.9.1",
"qrcode": "^1.5.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"html-loader": "^4.2.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.7",
"supertest": "^6.3.3"
},
"jest": {
"testEnvironment": "node",
"globalTeardown": "./Event/helpers/teardown.js"
}
}