-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.24 KB
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
{
"name": "@gps-demos/component-library",
"private": false,
"version": "0.2.0",
"type": "module",
"files": [
"dist"
],
"main": "./dist/component-library.umd.cjs",
"module": "./dist/component-library.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/component-library.js",
"require": "./dist/component-library.umd.cjs"
}
},
"scripts": {
"dev": "npm run storybook",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o public",
"build": "tsc && vite build && npm run build-storybook",
"preview": "vite preview",
"release": "npm run build && git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GPS-Demos/component-library.git"
},
"keywords": [],
"author": "GPS Demo Team",
"license": "ISC",
"dependencies": {
"@heroicons/react": "^2.0.18",
"@types/react-datepicker": "^4.11.2",
"formik": "^2.4.1",
"react": "^18.2.0",
"react-datepicker": "^4.16.0",
"react-dom": "^18.2.0",
"vite-plugin-dts": "^3.5.1",
"yup": "^1.2.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.0.18",
"@storybook/addon-interactions": "^7.0.18",
"@storybook/addon-links": "^7.0.18",
"@storybook/addon-styling": "^1.0.8",
"@storybook/blocks": "^7.0.18",
"@storybook/react": "^7.0.18",
"@storybook/react-vite": "^7.0.18",
"@storybook/testing-library": "^0.0.14-next.2",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"autoprefixer": "^10.4.14",
"daisyui": "^3.6.4",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"eslint-plugin-storybook": "^0.6.12",
"prop-types": "^15.8.1",
"storybook": "^7.0.18",
"typescript": "^5.0.2",
"vite": "^4.3.9",
"vite-tsconfig-paths": "^4.2.0"
},
"peerDependencies": {
"formik": "^2.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}