-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.38 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": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cross-env NODE_ENV=DEVELOPMENT nodemon index.js",
"dev-docker": "cross-env NODE_ENV=DOCKERDEV nodemon index.js",
"migrate": "npx sequelize-cli db:migrate",
"populate": "npx sequelize-cli db:seed:all",
"prestart": "npm run migrate && npm run populate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aymsep/Nedtrax-Backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Aymsep/Nedtrax-Backend/issues"
},
"homepage": "https://github.com/Aymsep/Nedtrax-Backend#readme",
"dependencies": {
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.2.0",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"morgan-body": "^2.6.9",
"pg": "^8.11.5",
"sequelize": "^6.37.2",
"uuid": "^9.0.1",
"winston": "^3.13.0",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"chalk": "^4.1.2",
"cross-env": "^7.0.3",
"eslint": "^9.0.0",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"sequelize-cli": "^6.6.2"
}
}