-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.8 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
{
"name": "react-done-tracker",
"version": "0.0.15-beta.5",
"description": "Keep track of when your React tree is done loading",
"type": "module",
"main": "./dist/index.js",
"repository": "https://github.com/bubblydoo/react-done-tracker",
"author": "Hans Otto Wirtz <[email protected]>",
"license": "MIT",
"exports": {
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "npm run test-storybook",
"test-storybook": "test-storybook",
"test-debug": "cross-env DEBUG=true PWDEBUG=1 npm run test-storybook",
"prepublishOnly": "npm run build"
},
"files": [
"dist/**/*",
"!dist/*.tsbuildinfo"
],
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@storybook/addon-actions": "^7.0.0-alpha.57",
"@storybook/addon-essentials": "^7.0.0-alpha.57",
"@storybook/addon-interactions": "^7.0.0-alpha.57",
"@storybook/addon-links": "^7.0.0-alpha.57",
"@storybook/jest": "^0.0.11-next.0",
"@storybook/react": "^7.0.0-alpha.57",
"@storybook/react-vite": "^7.0.0-alpha.57",
"@storybook/test-runner": "^0.10.0-next.4",
"@storybook/testing-library": "^0.0.14-next.1",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"cross-env": "^7.0.3",
"eslint": "^8.29.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"storybook": "^7.0.0-alpha.57",
"tsup": "^6.5.0",
"typescript": "~4.9.3",
"vite": "^4.0.3"
},
"packageManager": "[email protected]"
}