-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "seed",
"version": "0.0.1",
"description": "seed",
"main": "dist/index.js",
"port": 3027,
"scripts": {
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"dev": "nodemon index.js --config \"./nodemon.json\"/",
"validate": "npm run lint",
"prepare": "husky install",
"build": "./build.sh"
},
"author": "INDEC-IT",
"license": "ISC",
"dependencies": {
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-openapi-validator": "^5.0.1",
"mongoose": "^6.8.3",
"superagent": "^8.0.6",
"swagger-ui-express": "^4.6.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@commitlint/cli": "^17.4.1",
"eslint": "^8.31.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.3.1",
"jest-transform-stub": "^2.0.0",
"jest-watch-typeahead": "^2.2.1",
"mongodb-memory-server": "^8.11.0",
"nodemon": "^2.0.20",
"supertest": "^6.3.3"
}
}