-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 959 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
{
"scripts": {
"lint": "eslint './superstake-ui/**/*.{ts,tsx}'",
"lint:fix": "yarn lint --fix",
"prepare": "husky install",
"prettify": "prettier --check './superstake-ui/**/*.{ts,tsx}'",
"prettify:write": "prettier --write './superstake-ui/**/*.{ts,tsx}'",
"pre-commit": "bun run lint && bun run prettify && cd ./superstake-ui && bun run test"
},
"author": "crispheaney",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.10.3",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=14 <19"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "bun run pre-commit"
}
}
}