-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.5 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.5 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
{
"name": "@doctorproject/react",
"version": "0.1.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./styles": "./src/styles/global.css",
"./tokens": {
"types": "./dist/tokens.d.ts",
"import": "./dist/tokens.js",
"require": "./dist/tokens.cjs"
}
},
"files": [
"dist",
"src/styles",
"src/tokens.ts"
],
"scripts": {
"build": "tsup",
"prepublishOnly": "npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@faker-js/faker": "^9.0.0",
"@storybook/addon-a11y": "^8.0.0",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/react-vite": "^8.0.0",
"@tailwindcss/vite": "^4.2.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/topojson-client": "^3.1.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"storybook": "^8.0.0",
"storybook-dark-mode": "^4.0.0",
"tailwindcss": "^4.2.1",
"tsup": "^8.0.0",
"typescript": "^5.6.0",
"vite": "^6.0.0"
},
"dependencies": {
"chart.js": "^4.5.1",
"chartjs-chart-geo": "^4.3.6",
"react-chartjs-2": "^5.3.1",
"topojson-client": "^3.1.0"
}
}