-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 947 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
{
"name": "emweb",
"private": true,
"scripts": {
"prepare": "husky",
"types": "tsc --noEmit",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"watch": "pnpm --parallel --filter @emweb/* prepublish --watch"
},
"license": "ISC",
"devDependencies": {
"@commitlint/config-conventional": "^18.6.0",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"commitlint": "^18.6.0",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.10",
"lint-staged": "^15.2.2",
"multi-semantic-release": "^3.0.2",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.(ts|tsx|js|json)": "prettier --write",
"*.(ts|tsx)": "eslint --fix"
},
"release": {
"branches": [
"main"
]
}
}