-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.2 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
49
50
51
52
53
54
55
{
"name": "image-api",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cross-env DEBUG=1 nodemon ./index.js",
"format": "prettier --write \"src/**/*.js\"",
"start": "node ./index.js"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern \"**/*.*(js|jsx)\""
}
},
"author": "",
"license": "MIT",
"dependencies": {
"apex-logs-winston": "^1.0.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.1.10",
"express-promise-router": "^4.0.1",
"helmet": "^4.0.0",
"lodash": "^4.17.19",
"minio": "^7.0.16",
"moment": "^2.27.0",
"mongoose": "^5.9.28",
"mongoose-autorefs": "^1.0.5",
"mongoose-plugin-autoinc": "^1.1.9",
"mongoose-unique-validator": "^2.0.3",
"nano-md5": "^1.0.5",
"object-hash": "^2.0.3",
"sharp": "^0.25.4",
"winston": "^3.3.3"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"devDependencies": {
"husky": "^4.2.5",
"cross-env": "^7.0.2",
"jest": "^26.0.1",
"prettier": "2.0.5",
"nodemon": "^2.0.4",
"pretty-quick": "^2.0.1",
"supertest": "^4.0.2"
}
}