-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.97 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
{
"name": "immer-state",
"version": "0.8.0",
"author": "Wes Souza",
"license": "MIT",
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"engines": {
"node": ">=14"
},
"dependencies": {},
"scripts": {
"lint": "eslint .",
"build": "rollup -c",
"prepare": "yarn run build",
"check:types": "tsc --noEmit",
"coverage": "vitest run --coverage",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:watch": "vitest"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.5",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.1.2",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.1",
"@types/node": "^18.19.3",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/coverage-c8": "^0.28.5",
"@vitest/ui": "^0.28.5",
"esbuild": "^0.17.19",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"immer": "^9.0.21",
"import-sort-style-wes": "^3.0.2",
"jsdom": "^21.1.2",
"prettier": "2.8.4",
"prettier-plugin-import-sort": "^0.0.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.29.4",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-replace": "^2.2.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5",
"vite": "^4.5.1",
"vitest": "^0.28.5"
},
"peerDependencies": {
"fast-deep-equal": ">=3",
"immer": ">=6",
"react": ">=16"
},
"importSort": {
".js, .jsx": {
"parser": "babylon",
"style": "wes"
},
".ts, .tsx": {
"parser": "typescript",
"style": "wes"
}
}
}