-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.57 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
{
"name": "scrumfi.sh",
"version": "1.0.0",
"description": "A helper for determining ticket points.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jakehamilton/scrumfi.sh.git"
},
"author": "Jake Hamilton <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jakehamilton/scrumfi.sh/issues"
},
"homepage": "https://github.com/jakehamilton/scrumfi.sh#readme",
"prettier": {
"tabWidth": 4
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,jsx,json}": "prettier --write"
},
"scripts": {
"start": "npm run --prefix ./backend start",
"dev": "npm run dev:frontend & npm run dev:backend",
"dev:frontend": "npm run --prefix ./frontend dev",
"dev:backend": "npm run --prefix ./backend dev",
"build": "npm run --prefix ./frontend build",
"postinstall": "npm run install:frontend & npm run install:backend",
"install:frontend": "npm --prefix ./frontend install",
"install:backend": "npm --prefix ./backend install"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2"
}
}