forked from ali5alkaf5/think-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.44 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
{
"name": "ts-express-jest-supertest",
"version": "1.0.0",
"description": "",
"main": "server.ts",
"scripts": {
"start": "node dist/server.js",
"dev": "nodemon --exec npx ts-node ./src/server.ts",
"test": "jest --coverage",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.583.0",
"@aws-sdk/s3-request-presigner": "^3.583.0",
"@types/multer": "^1.4.11",
"@types/multer-s3": "^3.0.3",
"argon2": "^0.40.3",
"axios": "^1.7.5",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.17.3",
"form-data": "^4.0.0",
"googleapis": "^140.0.1",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.0.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"object-hash": "^3.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@types/bcrypt": "^5.0.1",
"@types/cookie-parser": "^1.4.5",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^9.0.4",
"@types/node": "^17.0.31",
"@types/node-fetch": "^2.6.11",
"@types/supertest": "^2.0.11",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.9.2",
"typescript": "^4.6.2"
}
}