-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.17 KB
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
{
"name": "minify",
"version": "1.0.0",
"type": "module",
"description": "Create an API that serves as an cloud backup system",
"main": "server.js",
"scripts": {
"test": "jest src/test",
"dev": "nodemon server",
"start": "node server",
"createDb": "node src/models/createTables.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrAzuka/minify.git"
},
"keywords": [],
"author": "Azuka Olisemelie",
"license": "MIT",
"bugs": {
"url": "https://github.com/MrAzuka/minify/issues"
},
"homepage": "https://github.com/MrAzuka/minify#readme",
"dependencies": {
"aws-sdk": "^2.1089.0",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"helmet": "^5.0.2",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"multer-s3": "^2.10.0",
"pg": "^8.7.3",
"uuid": "^8.3.2",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"supertest": "^6.2.2"
}
}