-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.07 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
{
"name": "voting-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon -L server.js",
"test": "jest",
"test:coverage": "jest --coverage",
"swagger-autogen": "node swagger.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeapChain/Voting-Backend.git"
},
"author": "hussu010",
"license": "ISC",
"bugs": {
"url": "https://github.com/LeapChain/Voting-Backend/issues"
},
"homepage": "https://github.com/LeapChain/Voting-Backend#readme",
"dependencies": {
"@leapchain/dleap": "^0.1.0",
"axios": "^0.27.2",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.2",
"morgan": "^1.10.0",
"node-cron": "^3.0.2",
"swagger-autogen": "^2.21.2",
"swagger-ui-express": "^4.4.0"
},
"devDependencies": {
"jest": "^28.1.3",
"mongodb-memory-server": "^8.8.0",
"nodemon": "^2.0.16",
"supertest": "^6.2.4"
}
}