-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
54
{
"name": "use-cls-state",
"version": "0.0.3",
"description": "A `useState` hook that can accept class instance as state.",
"keywords": [
"react",
"hook",
"class",
"state"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pilagod/use-cls-state.git"
},
"author": "Cyan Ho <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pilagod/use-cls-state/issues"
},
"homepage": "https://github.com/pilagod/use-cls-state#readme",
"dependencies": {
"class-transformer": "^0.5.1",
"reflect-metadata": "^0.2.1"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@testing-library/react": "^14.2.1",
"@tsconfig/recommended": "^1.0.3",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.62",
"@types/react-dom": "^18.2.19",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}