-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
81 lines (81 loc) · 2.31 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
{
"name": "jotai-recoil-adapter",
"version": "0.4.0",
"description": "Drop-in adapter for migrating to Jotai from Recoil",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"jotai",
"recoil",
"plugin",
"react",
"state",
"manager",
"management",
"store"
],
"repository": "https://github.com/clockelliptic/jotai-recoil-adapter.git",
"scripts": {
"dev": "tsc && vite build --watch",
"start": "vite --host --open",
"build": "tsc && vite build",
"build:types": "dts-bundle-generator --config ./dts-bundle-generator.config.ts",
"lint:scripts": "eslint . --ext .ts",
"lint:styles": "stylelint ./**/*.{css,scss}",
"format:scripts": "prettier . --write",
"format:styles": "stylelint ./**/*.{css,scss} --fix"
},
"peerDependencies": {
"react": ">= 17.0.2 <= 18"
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"jotai": "^2.6.1"
},
"devDependencies": {
"@ant-design/colors": "^7.0.2",
"@ant-design/icons": "^5.2.6",
"@ant-design/pro-layout": "^7.17.19",
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.11.3",
"@react-hooks-library/core": "^0.6.0",
"@types/lodash": "^4.14.202",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@vitejs/plugin-react": "^4.2.1",
"afterframe": "^1.0.2",
"antd": "^5.13.1",
"dts-bundle-generator": "^9.2.4",
"emotion-normalize": "^11.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-relative-import-paths": "^1.5.3",
"eslint-plugin-prettier": "^5.1.3",
"jotai-effect": "^0.3.2",
"lodash": "^4.17.21",
"prettier": "^3.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.2",
"recoil": "^0.7.7",
"stylelint": "^16.1.0",
"stylelint-config-recommended": "^14.0.0",
"stylelint-config-sass-guidelines": "^11.0.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"uuid": "^9.0.1",
"vite": "^5.0.11",
"vite-plugin-dts": "^3.7.0",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.2.1"
}
}