forked from xola/ui-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.45 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
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@xola/ui-kit",
"version": "2.3.5",
"description": "Xola UI Kit",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/xola/ui-kit.git"
},
"files": [
"build",
"index.css",
"index.d.ts",
"tailwind.config.js",
"postcss.config.js"
],
"main": "build/ui-kit.umd.js",
"module": "build/ui-kit.mjs",
"types": "index.d.ts",
"scripts": {
"prepare": "node scripts/prepare && vite build",
"start": "npm run storybook -s public --no-open",
"dev": "npm run storybook -s public --no-manager-cache --no-open",
"storybook": "npm run prepare && start-storybook -p 6006 -s public --no-open",
"build": "npm run prepare && vite build",
"clean": "rm -rf node_modules/.vite",
"build:storybook": "npm run prepare && build-storybook -s public",
"lint": "xola-lint src --ignore src/stories",
"lint:fix": "xola-lint src --fix --ignore src/stories",
"lint:report": "xola-lint src --ignore src/stories --reporter=json src > eslint_report.json",
"format": "prettier -l --write src",
"test": "jest",
"chromatic": "chromatic --exit-zero-on-changes --build-script-name build:storybook"
},
"dependencies": {
"@headlessui/react": "^1.4.0",
"@tailwindcss/forms": "^0.5.6",
"@tailwindcss/line-clamp": "^0.3.1",
"@tippyjs/react": "^4.2.6",
"clsx": "^1.1.1",
"dayjs": "^1.11.10",
"downshift": "^6.1.5",
"get-user-locale": "^1.4.0",
"google-libphonenumber": "^3.2.22",
"nouislider-react": "^3.4.1",
"prop-types": "^15.7.2",
"react-day-picker": "^7.4.10",
"react-hot-toast": "^2.1.0",
"react-hotkeys-hook": "^3.4.0",
"react-json-view": "^1.21.3",
"react-textarea-autosize": "^8.5.3",
"react-select": "^5.7.0",
"storybook-addon-designs": "^6.3.1",
"tippy.js": "^6.3.1"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.15.6",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addons": "^6.5.10",
"@storybook/react": "^6.5.10",
"@storybook/theming": "^6.5.10",
"@xola/jslint": "^2.1.2",
"autoprefixer": "^10.4.5",
"babel-jest": "^27.2.0",
"babel-loader": "^8.2.2",
"chromatic": "^6.11.4",
"jest": "^27.2.0",
"lodash": "^4.17.21",
"postcss": "^8.4.5",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"storybook-css-modules-preset": "^1.1.1",
"tailwindcss": "^3.1.8",
"typescript": "^4.9.5",
"vite": "^3.0.8"
},
"peerDependencies": {
"autoprefixer": "^10.3.1",
"lodash": "^4.17.21",
"postcss": "^8.3.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tailwindcss": "^3.0.18"
},
"engines": {
"node": ">=16"
},
"prettier": {
"semi": true,
"printWidth": 120,
"trailingComma": "all",
"singleQuote": false,
"bracketSpacing": true,
"useTabs": false,
"arrowParens": "always",
"bracketSameLine": false,
"tabWidth": 4
}
}