forked from gulfaraz/caladrius
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.53 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "caladrius",
"version": "0.6.5",
"description": "Assessing Building Damage caused by Natural Disasters using Satellite Images",
"main": "index.js",
"scripts": {
"backend": "nodemon index.js",
"frontendstart": "cd client && npm run-script start",
"frontendbuild": "cd client && npm run-script build",
"dev": "run-p backend frontendstart",
"start": "run-p backend frontendbuild",
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "prettier --write \"**/*.{js,css,html,json}\" --ignore-path ../../.prettierignore"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,css,html,json}": [
"prettier --write --ignore-path ../../.prettierignore",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/rodekruis/caladrius.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rodekruis/caladrius/issues"
},
"homepage": "https://github.com/rodekruis/caladrius#readme",
"dependencies": {
"bcrypt": "^3.0.7",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"express": "^4.16.4",
"nodemon": "^1.18.11",
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"husky": "^3.0.9",
"lint-staged": "^10.0.0-0",
"prettier": "^1.18.2"
}
}