-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.04 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
{
"name": "announcements-backend",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"start": "tsoa spec-and-routes && ts-node -r dotenv/config src/index.ts",
"dev": "tsoa spec-and-routes && nodemon -r dotenv/config src/index.ts --watch src --config nodemon.json",
"build": "tsoa spec-and-routes && tsc --outDir build --experimentalDecorators",
"test": "jest"
},
"dependencies": {
"@typegoose/typegoose": "^12.4.0",
"@types/express": "^4.17.21",
"@types/node": "^20.12.12",
"@types/swagger-ui-express": "^4.1.6",
"body-parser": "^1.20.2",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"google-auth-library": "^9.14.1",
"mongodb-memory-server": "^10.0.0",
"mongoose": "^8.3.5",
"node-fetch-commonjs": "^3.3.2",
"nodemon": "^3.1.0",
"swagger-ui-express": "^5.0.0",
"ts-node": "^10.9.2",
"tsoa": "^6.2.1",
"typescript": "^5.4.5"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@jest/globals": "^29.7.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5"
}
}