-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
121 lines (121 loc) · 4 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "will-this-react-global-state-work-in-concurrent-rendering",
"description": "Test tearing and branching in React concurrent rendering",
"private": true,
"version": "0.2.0",
"author": "Daishi Kato",
"repository": {
"type": "git",
"url": "https://github.com/dai-shi/will-this-react-global-state-work-in-concurrent-rendering.git"
},
"scripts": {
"test": "run-s eslint",
"eslint": "eslint --ignore-pattern dist .",
"jest": "cross-env BABEL_ENV=jest jest",
"jest:json": "cross-env BABEL_ENV=jest jest --json --outputFile=./outfile.json --no-color 2> ./outfile_raw.txt",
"jest:update": "node update_readme.js",
"dev-server": "webpack serve --mode=development",
"http-server": "http-server dist",
"build:react-redux": "cross-env NAME=react-redux webpack",
"build:react-tracked": "cross-env NAME=react-tracked webpack",
"build:react-query": "cross-env NAME=react-query webpack",
"build:constate": "cross-env NAME=constate webpack",
"build:zustand": "cross-env NAME=zustand webpack",
"build:react-hooks-global-state": "cross-env NAME=react-hooks-global-state webpack",
"build:use-context-selector-base": "cross-env NAME=use-context-selector-base webpack",
"build:use-context-selector": "cross-env NAME=use-context-selector webpack",
"build:use-subscription": "cross-env NAME=use-subscription webpack",
"build:react-state": "cross-env NAME=react-state webpack",
"build:simplux": "cross-env NAME=simplux webpack",
"build:apollo-client": "cross-env NAME=apollo-client webpack",
"build:recoil": "cross-env NAME=recoil webpack",
"build:recoil_UNSTABLE": "cross-env NAME=recoil_UNSTABLE webpack",
"build:jotai": "cross-env NAME=jotai webpack",
"build:use-atom": "cross-env NAME=use-atom webpack",
"build:effector": "cross-env NAME=effector webpack",
"build:react-rxjs": "cross-env NAME=react-rxjs webpack",
"build:valtio": "cross-env NAME=valtio webpack",
"build:mobx-react-lite": "cross-env NAME=mobx-react-lite webpack",
"build-all": "run-s build:*"
},
"keywords": [
"react",
"context",
"hooks"
],
"license": "MIT",
"dependencies": {
"@apollo/client": "^3.7.6",
"@react-rxjs/core": "^0.10.3",
"@simplux/core": "^0.18.0",
"@simplux/react": "^0.18.0",
"constate": "^3.3.2",
"effector": "^22.5.0",
"effector-react": "^22.4.0",
"graphql": "^16.6.0",
"jotai": "^2.0.0",
"mobx": "^6.10.2",
"mobx-react-lite": "^4.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hooks-global-state": "^2.1.0",
"react-query": "^4.0.0-beta.3",
"react-redux": "^8.0.5",
"react-tracked": "^1.7.11",
"recoil": "^0.7.6",
"redux": "^4.2.1",
"rxjs": "^7.8.0",
"use-atom": "^0.9.0",
"use-context-selector": "^1.4.1",
"use-subscription": "^1.8.0",
"valtio": "^1.9.0",
"zustand": "^4.3.2"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^9.1.2",
"cross-env": "^7.0.3",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"http-server": "^14.1.1",
"jest": "^29.4.1",
"jest-puppeteer": "^6.2.0",
"npm-run-all": "^4.1.5",
"puppeteer": "17.1.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"babel": {
"env": {
"development": {
"presets": [
[
"@babel/preset-env",
{
"targets": "> 0.2%, not dead"
}
],
"@babel/preset-react"
]
},
"jest": {
"plugins": [
"@babel/plugin-transform-modules-commonjs",
"@babel/plugin-transform-react-jsx"
]
}
}
},
"jest": {
"preset": "jest-puppeteer"
}
}