-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
79 lines (79 loc) · 2.35 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
{
"name": "react-booking-form",
"version": "2.0.0-alpha.64",
"main": "dist/index.js",
"repository": "[email protected]:max-sym/react-booking-form.git",
"author": "Maksym Chuchmai <[email protected]>",
"license": "MIT",
"private": false,
"keywords": [
"booking",
"restaurant",
"hotel",
"date",
"datetime",
"location",
"picker"
],
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check -- --watch",
"build": "./scripts/build.sh --external:react --external:react-dom",
"lint": "eslint .",
"start": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"tw:dev": "postcss src/stories/styles/tailwind.css -o src/stories/styles/index.css",
"chromatic": "npx chromatic"
},
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.15.0",
"@react-icons/all-files": "^4.1.0",
"@storybook/addon-actions": "^6.3.7",
"@storybook/addon-essentials": "^6.3.7",
"@storybook/addon-links": "^6.3.7",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.3.7",
"autoprefixer": "^10.4.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"chromatic": "^6.5.3",
"css-loader": "^6.2.0",
"esbuild": "^0.14.36",
"eslint": "^7.17.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-local-rules": "^0.1.1",
"eslint-plugin-lodash": "^7.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-sort-imports-es6-autofix": "^0.5.0",
"moment": "^2.29.4",
"postcss": "^8.4.6",
"postcss-cli": "^9.1.0",
"postcss-preset-env": "^7.3.3",
"prettier": "^2.0.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"storybook-dark-mode": "^1.0.8",
"tailwind-styled-components": "^2.1.4",
"tailwindcss": "^3.0.22",
"typescript": "^4.3.5"
},
"dependencies": {
"@headlessui/react": "^1.5.0",
"debounce-promise": "^3.1.2",
"react-flatpickr": "^3.10.6",
"react-popper": "^2.2.5",
"@popperjs/core": "^2.11.5"
}
}