-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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": "nodejs-api",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"start": "node dist/src/server.js",
"dev": "ts-node-dev src/server.ts",
"build": "tsc",
"test": "jest --runInBand",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eduardofranca1/nodejs-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/eduardofranca1/nodejs-api/issues"
},
"homepage": "https://github.com/eduardofranca1/nodejs-api#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"moment": "^2.30.1",
"mongodb": "^6.13.0",
"reflect-metadata": "^0.2.2",
"swagger-jsdoc": "^6.2.5",
"swagger-ui-express": "^4.6.0",
"tsyringe": "^4.8.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^29.5.14",
"@types/node": "^17.0.17",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.5.5"
}
}