-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.24 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
{
"name": "fletch-state",
"version": "1.0.3",
"description": "A simple, somewhat opinionated state management API.",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./react": "./dist/react"
},
"types": "./dist/index.d.ts",
"author": "Marc Gebeily",
"license": "MIT",
"sideEffects": false,
"devDependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"webpack-bundle-analyzer": "^4.4.0"
},
"scripts": {
"prepare": "tsc",
"test": "jest ./src",
"lint": "eslint ./src/**"
},
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}