-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.41 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
{
"name": "file-uploader",
"version": "1.0.0",
"description": "Backend for File Uploader",
"engines": {
"node": ">=14.0.0"
},
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "mocha --exit --no-timeout",
"test-html": "mocha --exit --no-timeout --reporter mochawesome",
"test-junit": "mocha --exit --no-timeout --reporter mocha-junit-reporter",
"deploy:dev": "NODE_ENV=development node index.js",
"deploy:prod": "NODE_ENV=production node index.js",
"dev": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sabreen-Parveen/CoderSpace-Api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Sabreen-Parveen/CoderSpace-Api/issues"
},
"homepage": "https://github.com/Sabreen-Parveen/CoderSpace-Api#readme",
"dependencies": {
"@aws-sdk/client-glacier": "^3.33.0",
"@aws-sdk/client-s3": "3.33.0",
"@aws-sdk/s3-request-presigner": "3.33.0",
"axios": "^0.27.2",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"cross-var": "^1.1.0",
"dotenv-cli": "^4.1.0",
"dynamoose": "^2.8.2",
"express": "^4.17.1",
"mocha": "^10.2.0",
"mochawesome": "^7.1.3",
"multer": "^1.4.3",
"sanitize-s3-objectkey": "0.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"dotenv": "^10.0.0",
"mocha-junit-reporter": "^2.2.0"
}
}