-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
90 lines (90 loc) · 2.87 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "reactive-react-redux",
"description": "React Redux binding with React Hooks and Proxy",
"version": "5.0.0-alpha.7",
"publishConfig": {
"tag": "next"
},
"author": "Daishi Kato",
"repository": {
"type": "git",
"url": "https://github.com/dai-shi/reactive-react-redux.git"
},
"source": "./src/index.ts",
"main": "./dist/index.umd.js",
"module": "./dist/index.modern.js",
"types": "./dist/src/index.d.ts",
"sideEffects": false,
"files": [
"src",
"dist"
],
"scripts": {
"compile": "microbundle build -f modern,umd",
"test": "run-s eslint tsc-test jest",
"eslint": "eslint --ext .js,.ts,.tsx --ignore-pattern dist .",
"jest": "jest --preset ts-jest/presets/js-with-ts",
"tsc-test": "tsc --project . --noEmit",
"apidoc": "documentation readme --section API --markdown-toc false --parse-extension ts src/*.ts",
"examples:01_minimal": "DIR=01_minimal EXT=js webpack-dev-server",
"examples:02_typescript": "DIR=02_typescript webpack-dev-server",
"examples:03_deep": "DIR=03_deep webpack-dev-server",
"examples:04_immer": "DIR=04_immer webpack-dev-server",
"examples:05_localstate": "DIR=05_localstate webpack-dev-server",
"examples:06_memoization": "DIR=06_memoization webpack-dev-server",
"examples:07_multistore": "DIR=07_multistore webpack-dev-server",
"examples:08_dynamic": "DIR=08_dynamic webpack-dev-server",
"examples:09_thunk": "DIR=09_thunk webpack-dev-server",
"examples:11_todolist": "DIR=11_todolist EXT=tsx webpack-dev-server",
"examples:12_async": "DIR=12_async EXT=tsx webpack-dev-server",
"examples:13_memo": "DIR=13_memo webpack-dev-server"
},
"keywords": [
"react",
"redux",
"state",
"hooks",
"stateless",
"thisless",
"pure"
],
"license": "MIT",
"dependencies": {
"proxy-compare": "^1.1.3"
},
"devDependencies": {
"@testing-library/react": "^11.2.2",
"@types/jest": "^26.0.19",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/redux-logger": "^3.0.8",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"documentation": "^13.1.0",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^4.5.0",
"immer": "^8.0.0",
"jest": "^26.6.3",
"microbundle": "^0.13.0",
"npm-run-all": "^4.1.5",
"react": "experimental",
"react-dom": "experimental",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.12",
"typescript": "^4.1.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.1"
},
"peerDependencies": {
"react": ">=18.0.0",
"redux": ">=4.0.0"
}
}