-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1016 Bytes
/
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
{
"name": "git-service",
"version": "VERSION",
"description": "Krateo Git Service",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"format:git": "prettier --write . && git add -A .",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.26.1",
"cors": "^2.8.5",
"express": "^4.17.3",
"helmet": "^5.0.2",
"js-yaml": "^4.1.0",
"moment": "^2.29.4",
"response-time": "^2.3.2",
"router": "^1.3.6",
"uuid": "^8.3.2",
"winston": "^3.6.0",
"yaml": "^2.0.0"
},
"devDependencies": {
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"husky": "^8.0.2",
"prettier": "^2.7.1"
}
}