-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.93 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "use-frozen-state",
"version": "1.1.1",
"description": "React hook that makes sure your state is immutable. Call useFrozenState or useDeepFrozenState instead of useState",
"author": "NoamRa",
"license": "MIT",
"repository": "NoamRa/use-frozen-state",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=10",
"npm": ">=5"
},
"keywords": [
"useFrozenState",
"useDeepFrozenState",
"use-frozen-state",
"use-deep-frozen-state",
"freeze",
"deep-reeze",
"immutable",
"state",
"hook",
"custom-hook",
"react",
"react-hook"
],
"scripts": {
"test": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"build": "rollup -c",
"start": "rollup -c -w",
"prepare": "npm run build",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build"
},
"dependencies": {},
"peerDependencies": {
"react": "^16.12.0"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/runtime": "^7.7.7",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^24.0.25",
"@types/react": "^16.9.17",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"cross-env": "^6.0.3",
"eslint": "^6.8.0",
"gh-pages": "^2.1.1",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-scripts": "^3.3.0",
"react-test-renderer": "^16.12.0",
"rollup": "^1.27.14",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"rollup-plugin-url": "^3.0.1",
"ts-jest": "^24.2.0",
"typescript": "^3.7.4"
}
}