-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.02 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
68
69
70
71
72
{
"name": "@platformatic/ui-components",
"description": "Platformatic UI Components",
"version": "0.9.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": "vitest run",
"prepare": "rm -Rf dist; npm run build; npm run tailwind"
},
"dependencies": {
"@storybook/test": "^8.0.8",
"autoprefixer": "^10.4.12",
"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": "^3.0.0",
"@fastify/pre-commit": "^2.0.2",
"@storybook/addon-actions": "^8.0.8",
"@storybook/addon-essentials": "^8.0.8",
"@storybook/addon-interactions": "^8.0.8",
"@storybook/addon-links": "^8.0.8",
"@storybook/react": "^8.0.8",
"@storybook/react-vite": "^8.0.8",
"@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",
"babel-loader": "^9.0.0",
"happy-dom": "^16.0.0",
"jsdom": "^26.0.0",
"react-test-renderer": "^19.0.0",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"storybook": "^8.0.8",
"tailwindcss": "^3.1.8",
"vite": "^5.0.0",
"vitest": "^3.0.0"
},
"standard": {
"globals": [
"expect",
"test",
"alert"
],
"ignore": [
"/dist"
]
},
"pre-commit": [
"lint",
"test"
]
}