-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.87 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
{
"name": "package-name",
"description": "Package description",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://repoUrl.com"
},
"main": "./dist/package-name.umd.js",
"module": "./dist/package-name.es.js",
"typings": "./dist/package-name.es.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "vite build",
"test": "vitest",
"lint": "eslint src",
"lint:fix": "pnpm run lint -- --fix",
"pretty": "prettier --write \"./**/*.{ts,tsx,json}\" --config ./prettier.config.js",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@rollup/plugin-typescript": "^8.2.1",
"@storybook/addon-essentials": "^7.5.0",
"@storybook/addon-interactions": "^7.5.0",
"@storybook/addon-links": "^7.5.0",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.5.0",
"@storybook/react": "^7.5.0",
"@storybook/react-vite": "^7.5.0",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "^18.0.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitejs/plugin-react": "^3.0.1",
"babel-loader": "^8.3.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.5.0",
"happy-dom": "^6.0.3",
"prettier": "^3.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"storybook": "^7.5.0",
"tslib": "^2.4.0",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-dts": "^2.1.0",
"vite-tsconfig-paths": "^4.0.5",
"vitest": "^0.18.0"
},
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
}
}