-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.71 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@agility/plenum-ui",
"version": "2.1.11",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">= 18.0.0"
},
"scripts": {
"lint": "next lint",
"build-storybook": "npm-run-all -p \"sb-build:*\"",
"sb-build:storybook": "storybook build",
"sb-build:tw": "tailwindcss -o ./lib/tailwind.css",
"storybook:dev": "storybook dev -p 6006",
"storybook:tw": "tailwindcss -o ./lib/tailwind.css -w ",
"storybook": "npm-run-all -p \"storybook:*\" ",
"dev": "yarn storybook",
"build:tw": "tailwindcss -o ./dist/tailwind.css",
"build:tsc": "yarn node build.js",
"prepare": "yarn build",
"build": "yarn clean && npm-run-all -s \"build:*\" ",
"clean": "rimraf dist",
"create-component": "node scripts/create-component.js",
"start:local": "bash ./local.sh",
"start:watch": "yarn node watch.js",
"test": "vitest"
},
"dependencies": {
"@floating-ui/react": "^0.25.0",
"@headlessui/react": "^1.7.10",
"@headlessui/tailwindcss": "^0.1.2",
"@heroicons/react": "^1.0.5",
"@next/font": "^13.4.12",
"@tabler/icons": "^2.26.0",
"@tabler/icons-react": "^2.27.0",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@vitejs/plugin-react": "^4.3.3",
"classnames": "^2.3.2",
"concurrently": "^7.6.0",
"next": "13.1.6",
"npm-dts": "^1.3.12",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.4",
"typescript": "^5.1.6"
},
"devDependencies": {
"@storybook/addon-designs": "^7.0.1",
"@storybook/addon-essentials": "^7.1.1",
"@storybook/addon-interactions": "^7.1.1",
"@storybook/addon-links": "^7.1.1",
"@storybook/blocks": "^7.1.1",
"@storybook/manager-api": "^7.1.1",
"@storybook/nextjs": "^7.1.1",
"@storybook/react": "^7.1.1",
"@storybook/testing-library": "^0.2.0",
"@storybook/theming": "^7.1.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/node": "18.11.18",
"autoprefixer": "^10.4.13",
"esbuild": "^0.18.19",
"eslint": "8.32.0",
"eslint-config-next": "13.1.6",
"eslint-plugin-storybook": "^0.6.13",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.10.1",
"rimraf": "^5.0.1",
"storybook": "^7.1.1",
"ts-node": "^10.9.2",
"vitest": "^2.1.4"
},
"peerDependencies": {
"@floating-ui/react": "^0.25.0",
"@headlessui/react": "^1.7.10",
"@headlessui/tailwindcss": "^0.1.2",
"@heroicons/react": "^1.0.5",
"@tabler/icons": "^2.26.0",
"@tabler/icons-react": "^2.27.0",
"classnames": "^2.3.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.10.1"
}
}