-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.88 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.88 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "design-system-atomic",
"private": false,
"version": "1.0.13",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/designsystematomic-blip/dados-saude-lib-components.git"
},
"author": {
"name": "Amanda Prates Caetano",
"email": "amandaprates1997@gmail.com"
},
"scripts": {
"dev": "vite",
"build": "tsc --p ./tsconfig.json && vite build",
"watch": "vite build --watch",
"dev:watch": "vite build --mode development --watch",
"dev:types": "vite build --mode development --watch",
"lint": "eslint .",
"preview": "vite preview",
"generate": "cross-env NODE_OPTIONS=\"--import tsx\" plop --plopfile=./generate/plopfile.ts",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepublishOnly": "npm run build",
"release": "npm run build && npm version patch && npm publish"
},
"main": "./dist/main.js",
"module": "./dist/main.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js",
"require": "./dist/main.js"
},
"./components": "./dist/components/index.js",
"./hooks": "./dist/hooks/index.js",
"./icons": "./dist/icons/index.js",
"./styles/*": "./dist/styles/*",
"./assets/*": "./dist/assets/*"
},
"files": [
"dist",
"dist/styles/*.css",
"dist/assets/*"
],
"sideEffects": [
"**/*.css"
],
"peerDependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-webcam": "^7.2.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.1",
"@eslint/js": "^9.36.0",
"@rollup/plugin-typescript": "^12.1.4",
"@storybook/addon-a11y": "^9.1.8",
"@storybook/addon-docs": "^9.1.16",
"@storybook/addon-vitest": "^9.1.8",
"@storybook/react-vite": "^9.1.8",
"@types/node": "^24.5.2",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.3",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"cross-env": "^10.0.0",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-storybook": "^9.1.8",
"glob": "^11.0.3",
"globals": "^16.4.0",
"path": "^0.12.7",
"playwright": "^1.55.1",
"plop": "^4.0.3",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"storybook": "^9.1.8",
"tslib": "^2.8.1",
"tsx": "^4.20.5",
"typescript": "~5.8.3",
"typescript-eslint": "^8.44.0",
"vite": "^7.1.7",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-lib-inject-css": "^2.2.2",
"vite-plugin-static-copy": "^3.1.2",
"vitest": "^3.2.4"
},
"dependencies": {
"react-webcam": "^7.2.0"
}
}