forked from docker/multi-container-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 764 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 764 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
{
"name": "multi-container-app",
"version": "1.0.0",
"description": "Multi-container Todo application with Node.js and MongoDB",
"private": true,
"scripts": {
"prepare": "husky install",
"lint": "cd app && npm run lint",
"format": "cd app && npm run format",
"test": "cd app && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/dreadwitdastacc-IFA/multi-container-app"
},
"keywords": [
"docker",
"compose",
"nodejs",
"mongodb",
"todo"
],
"author": "",
"license": "ISC",
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^14.0.0"
},
"lint-staged": {
"app/**/*.{js,ejs}": [
"cd app && eslint --fix",
"cd app && prettier --write"
]
}
}