-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
53 lines (53 loc) · 1.59 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
51
52
53
{
"name": "use-funnel",
"type": "module",
"private": true,
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.5",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^9.0.11",
"hygen": "^6.2.11",
"lint-staged": "^15.2.5",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
},
"scripts": {
"add:router": "hygen packages router",
"prepare": "husky",
"prettier": "prettier --write \"packages/*/{src,test}/**/*.{js,jsx,ts,tsx}\"",
"changeset": "changeset",
"changeset:publish": "pnpm publish -r",
"changeset:version": "changeset version && pnpm i --lockfile-only"
},
"repository": {
"type": "git",
"url": "https://github.com/toss/use-funnel.git"
},
"license": "MIT",
"homepage": "https://use-funnel.slash.page/",
"bugs": "https://github.com/toss/use-funnel/issues",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/*/{src,test}/*.{js,jsx,ts,tsx,md}": [
"prettier --write",
"git add"
],
"packages/*/{src,test}/*.{js,ts,tsx}": [
"eslint --fix",
"git add"
]
},
"packageManager": "pnpm@9.6.0+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}