-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.01 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.01 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
{
"name": "@platformatic/ui-components",
"description": "Platformatic UI Components",
"version": "0.20.0",
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/platformatic/ui-components.git"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"storybook": "NODE_OPTIONS='--openssl-legacy-provider' storybook dev -p 6006",
"build-storybook": "NODE_OPTIONS='--openssl-legacy-provider' storybook build",
"tailwind:watch": "tailwindcss -i ./src/styles/main.css -o ./dist/main.css --watch",
"tailwind": "tailwindcss -i ./src/styles/main.css -o ./dist/main.css",
"lint": "standard src | snazzy",
"lint:fix": "standard src --fix",
"test": "tsd && vitest run",
"prepare": "rm -Rf dist; npm run build; npm run tailwind"
},
"dependencies": {
"autoprefixer": "^10.4.12",
"d3": "^7.9.0",
"postcss": "^8.4.17",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-tooltip": "^4.5.1"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@chromatic-com/storybook": "^4.1.1",
"@fastify/pre-commit": "^2.0.2",
"@storybook/addon-docs": "^9.1.2",
"@storybook/addon-links": "^9.1.2",
"@storybook/react-vite": "^9.1.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.0.0",
"acorn": "^8.14.0",
"babel-loader": "^9.0.0",
"happy-dom": "^17.0.0",
"jsdom": "^26.0.0",
"react-test-renderer": "^19.0.0",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"storybook": "^9.1.2",
"tailwindcss": "^3.1.8",
"tsd": "^0.31.2",
"vite": "^5.0.0",
"vitest": "^3.0.0"
},
"standard": {
"globals": [
"expect",
"test",
"alert"
],
"ignore": [
"/dist"
]
},
"pre-commit": [
"lint",
"test"
],
"tsd": {
"directory": "test-d"
}
}