-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 908 Bytes
/
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
{
"name": "assignment1",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"devStart": "nodemon server.js",
"test": "jest --forceExit"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.279.0",
"@aws-sdk/s3-request-presigner": "^3.279.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.0.1",
"node-statsd": "^0.1.1",
"sequelize": "^6.28.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"babel-jest": "^29.4.1",
"jest": "^29.4.1",
"nodemon": "^2.0.20",
"supertest": "^6.3.3"
}
}