-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 951 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
{
"name": "stacks-utils",
"private": true,
"version": "1.0.0",
"description": "monorepo for Stacks config files and other utilities",
"author": "",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"prettier": "^3.3.3"
},
"commitlint": {
"extends": [
"@stackoverflow/commitlint-config"
]
},
"eslintConfig": {
"env": {
"node": true
},
"parserOptions": {
"project": [
"./tsconfig.json"
]
},
"extends": [
"@stackoverflow"
]
},
"prettier": "@stackoverflow/prettier-config"
}