-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.14 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
{
"name": "@oasisprotocol/dapp-voting",
"version": "0.0.0",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"eslint": "eslint . --cache --ext .js,.ts,.tsx --max-warnings 0",
"lint-git": "node ./internals/scripts/gitlint.mjs",
"lint-docs": "markdownlint --ignore '**/node_modules/**' '**/*.md'",
"prettier-check": "prettier --check . --ignore-path .eslintignore",
"prettier": "prettier --write . --ignore-path .eslintignore"
},
"license": "See License in LICENSE",
"packageManager": "pnpm@8.15.4",
"engines": {
"node": ">=20"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --ext .js,.ts,.tsx --max-warnings 0",
"*.{js,ts,tsx,css}": "prettier --write --ignore-path .eslintignore"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"markdownlint-cli": "^0.39.0",
"prettier": "^3.2.5"
}
}