-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.66 KB
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
54
55
56
57
58
59
60
{
"name": "lrhs",
"version": "0.1.0",
"description": "light weight react hook data store",
"main": "dist/index.js",
"type": "module",
"types": "src/index.ts",
"scripts": {
"bundle": "tsx scripts/esbuild.ts",
"build": "rm -rf dist && tsc --noEmit && NODE_ENV=production pnpm bundle",
"watch": "WATCH=true pnpm bundle",
"lint": "tsc --noEmit && eslint './{src,scripts}/**/*.{ts,tsx}' --fix",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YuhangGe/lrhs.git"
},
"keywords": [
"react",
"redux",
"store"
],
"author": "YuhangGe <abeyuhang@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/YuhangGe/lrhs/issues"
},
"homepage": "https://github.com/YuhangGe/lrhs#readme",
"devDependencies": {
"@types/node": "^20.14.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"esbuild": "^0.21.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"prettier": "^3.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsx": "^4.11.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"react": "*"
}
}