forked from map-of-pi/map-of-pi-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.64 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
53
54
55
56
57
58
59
{
"name": "map-of-pi-backend",
"version": "1.0.0",
"author": "Map of Pi Team",
"description": "Map of Pi Backend",
"license": "PiOS",
"main": "index.js",
"private": true,
"scripts": {
"build": "tsc",
"dev": "nodemon src/index.ts",
"start": "node build/index.js",
"test": "jest --detectOpenHandles --coverage"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.651.1",
"@sentry/integrations": "^7.114.0",
"@sentry/node": "^8.26.0",
"@sentry/profiling-node": "^8.26.0",
"axios": "^1.7.4",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.3.4",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"nodemailer": "^6.9.13",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-dist": "^5.17.14",
"swagger-ui-express": "^5.0.0",
"winston": "^3.14.2"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.13",
"@types/jsonwebtoken": "^9.0.6",
"@types/mongodb-memory-server": "^2.3.0",
"@types/multer": "^1.4.11",
"@types/multer-s3": "^3.0.3",
"@types/node": "^20.12.12",
"@types/nodemailer": "^6.4.15",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-dist": "^3.30.5",
"@types/swagger-ui-express": "^4.1.6",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.0.0",
"nodemon": "^3.1.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}