This repository has been archived by the owner on Oct 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.7 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": "@laststance/use-app-state",
"version": "1.2.14",
"description": "useAppState() hook. that global version of setState() built on useContext.",
"keywords": [
"react",
"state",
"hooks"
],
"author": "Ryota Murakami <dojce1048@gmail.com> (https://github.com/ryota-murakami)",
"license": "MIT",
"homepage": "https://github.com/laststance/use-app-state",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist/src/**"
],
"scripts": {
"test": "jest --verbose",
"lint": "yarn eslint src --ext .ts,.tsx",
"lint:fix": "yarn eslint src --ext .ts,.tsx --fix",
"build": "tsc",
"prettier": "prettier --write CHANGELOG.md README.md .github/workflows/ci.yml jest.config.js jest.setup.js .prettierrc tsconfig.json .eslintrc",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"peerDependencies": {
"react": ">=16.12.0",
"react-dom": ">=16.12.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.6",
"@types/node": "^18.7.1",
"@types/react": "^17.0.43",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"all-contributors-cli": "^6.20.0",
"eslint": "^8.21.0",
"eslint-plugin-jest": "^26.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^26.6.3",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^26.5.6",
"typescript": "^4.7.4"
},
"dependencies": {}
}