-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 857 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 857 Bytes
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
{
"name": "ecomplus-storage",
"version": "4.1.3",
"description": "E-Com Plus Storage API Node.js Express App",
"main": "main.js",
"scripts": {
"start": "node ./main.js",
"start:dev": "nodemon ./main.js",
"test": "node ./main.js",
"release": "standard-version"
},
"author": "E-Com Club",
"license": "GPL-3.0",
"private": true,
"dependencies": {
"aws-sdk": "^2.1074.0",
"axios": "^0.25.0",
"body-parser": "^1.19.1",
"express": "^4.17.2",
"form-data": "^4.0.0",
"multer": "^1.4.4"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"husky": "^4.3.8",
"nodemon": "^2.0.15",
"standard": "^16.0.4",
"standard-version": "^9.3.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}