-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.55 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
{
"name": "zustand-constate",
"version": "1.0.0",
"main": "./dist/zustand-constate.js",
"types": "./dist/zustand-constate.d.ts",
"repository": "https://github.com/ntvinhit/zustand-constate.git",
"author": "ntvinh.it@gmail.com <ntvinh.it@gmail.com>",
"license": "MIT",
"scripts": {
"test": "jest",
"install": "tsc ./zustand-constate.tsx --declaration --allowJs --jsx react --outDir dist",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/user-event": "^14.5.2",
"react": "^18.3.1",
"use-context-selector": "^2.0.0",
"vite": "^5.4.3",
"zustand": "^4.5.5"
},
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@chromatic-com/storybook": "1.9.0",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-onboarding": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/react-vite": "^8.2.9",
"@storybook/test": "^8.2.9",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react-dom": "^18.3.1",
"storybook": "^8.2.9",
"typescript": "^5.6.2"
},
"jest": {
"testEnvironment": "jest-environment-jsdom",
"moduleDirectories": [
"node_modules"
]
}
}