forked from gorrion-io/danger-zone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1022 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
41
42
43
44
{
"name": "danger-zone",
"version": "0.1.0",
"description": "Wujek Guzy project",
"repository": "https://github.com/gorrion-io/danger-zone.git",
"author": "Gorrion & KN Fullstack",
"license": "MIT",
"private": true,
"scripts": {
"start": "docker-compose up --build --remove-orphans -d && docker-compose logs -f -t",
"stop": "docker-compose stop",
"down": "docker-compose down",
"logs": "docker-compose logs -f -t"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"server/src/**/*.ts": [
"tslint --fix",
"prettier --write",
"git add"
],
"webapp/src/**/*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.7.2",
"eslint-plugin-react": "^7.18.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"tslint": "^5.20.1"
},
"dependencies": {
"typescript": "^3.7.5"
}
}