-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
55 lines (55 loc) · 1.44 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
{
"name": "retalk",
"version": "3.2.6",
"description": "The Simplest Redux",
"keywords": [
"react",
"flux",
"redux",
"retalk"
],
"license": "MIT",
"author": "nanxiaobei <[email protected]> (https://github.com/nanxiaobei)",
"homepage": "https://github.com/nanxiaobei/retalk",
"repository": "github:nanxiaobei/retalk",
"bugs": "https://github.com/nanxiaobei/retalk/issues",
"main": "dist/retalk.cjs.js",
"module": "dist/retalk.esm.js",
"files": [
"dist",
"src"
],
"scripts": {
"test": "vitest run --coverage --environment jsdom",
"build": "rm -rf dist coverage && rollup -c --bundleConfigAsCjs"
},
"peerDependencies": {
"react": ">=16.4.0",
"react-dom": ">=16.4.0"
},
"dependencies": {
"@babel/runtime": "^7.20.7",
"react-redux": "^8.0.5",
"redux": "^4.2.0"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@vitejs/plugin-react": "^3.0.0",
"@vitest/coverage-c8": "^0.26.3",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"jsdom": "^20.0.3",
"prettier": "^2.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.9.0",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vitest": "^0.26.3"
}
}