-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 947 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 947 Bytes
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
{
"name": "candidates",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node dist/index.js",
"dev": "NODE_ENV=development nodemon --exec babel-node src/index.js",
"build": "babel src -d dist",
"test": "NODE_ENV=test jest --verbose --silent src/tests/* --forceExit ",
"test:watch": "npm run test -- --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"jest": "^28.1.1",
"nodemon": "^2.0.15",
"supertest": "^6.2.3"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.9",
"morgan": "^1.10.0",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.4.0"
}
}