-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 888 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 888 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
37
{
"name": "etherfi",
"version": "1.0.0",
"description": "Auction",
"main": "build/main.js",
"scripts": {
"build": "npx tsc",
"start": "node build/main.js",
"test": "jest --updateSnapshot --coverage"
},
"author": "Umer",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"jest-environment-jsdom": "^29.7.0",
"jest-mock-extended": "^3.0.6",
"mongodb": "^6.5.0",
"mongoose": "^8.3.2",
"ts-jest": "^29.1.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.14",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"npm-run-all": "^4.1.5",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}