This repository was 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.6 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": "@ryotamurakami/react-appstate",
"version": "1.1.0",
"description": "React Global Store for Sharing Data between each components Built on Context.",
"keywords": [
"react",
"state",
"hooks"
],
"author": "Ryota Murakami <[email protected]> (https://github.com/ryota-murakami)",
"license": "MIT",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist/src/**"
],
"scripts": {
"test": "jest",
"lint": "yarn eslint src --ext .ts,.tsx",
"lint:fix": "yarn eslint src --ext .ts,.tsx --fix",
"build": "tsc",
"expriment": "cp -fR dist example/node_modules/@ryotamurakami/react-appstate/",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"peerDependencies": {
"react": "16.11.0",
"react-dom": "16.11.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.0",
"@testing-library/react": "^9.3.0",
"@types/jest": "^24.0.20",
"@types/node": "^12.11.7",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"all-contributors-cli": "^5.4.1",
"eslint": "^6.6.0",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-test-renderer": "^16.11.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4"
},
"dependencies": {}
}