-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.05 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
{
"name": "react-immersive",
"version": "0.6.3",
"private": false,
"main": "lib/index.js",
"description": "Simple state management for react on top of immer",
"types": "lib/index.d.ts",
"repository": {
"url": "https://github.com/rrmdn/react-immersive"
},
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "yarn test && yarn build",
"postpublish": "rm -rf lib"
},
"license": "MIT",
"dependencies": {
"scheduler": "^0.20.2",
"use-context-selector": "^1.3.9"
},
"devDependencies": {
"@testing-library/react-hooks": "^5.0.2",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"immer": "^8.0.1",
"jest": "^26.6.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^16.9.0",
"requestidlecallback-polyfill": "^1.0.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"peerDependencies": {
"immer": "^8.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"requestidlecallback-polyfill": "^1.0.2"
}
}