-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.76 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
60
61
62
63
64
65
66
{
"name": "fileSharingAPIServer",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node -r esm src/server.js | pino-pretty -c -L",
"dev": "nodemon -r esm src/server.js",
"babel:clear": "rm -rf ./node_modules/.cache/@babel/register",
"test": "npm run babel:clear && NODE_ENV=test mocha --require ./utils/babel-register --timeout 30000 ./src/tests/**/*.js --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sakibhasancse/file-sharing-server.git"
},
"keywords": [
"nodejs",
"upload",
"file",
"google cloud storage",
"rest api"
],
"author": "sakibhasancse",
"license": "ISC",
"bugs": {
"url": "https://github.com/sakibhasancse/file-sharing-server/issues"
},
"homepage": "https://github.com/sakibhasancse/file-sharing-server#readme",
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"@babel/cli": "^7.17.6",
"@google-cloud/storage": "^5.18.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"esm": "^3.2.25",
"express": "^4.17.3",
"express-pino-logger": "^7.0.0",
"express-rate-limit": "^6.3.0",
"helmet": "^5.0.2",
"mongoose": "^6.2.6",
"multer": "^1.4.4",
"nid": "^2.0.0",
"node-cron": "^3.0.2",
"pino": "^7.9.1",
"pino-pretty": "^7.5.4",
"winston": "^3.6.0"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/node": "^7.16.8",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.7",
"@babel/runtime": "^7.17.8",
"babel-jest": "^27.5.1",
"chai": "^4.3.6",
"chai-files": "^1.4.0",
"jest": "^27.5.1",
"mocha": "^9.2.2",
"nodemon": "^2.0.15",
"supertest": "^6.2.2"
}
}