-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.72 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
{
"name": "hub",
"private": true,
"dependencies": {
"@babel/core": "^7.18.13",
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
"@babel/plugin-proposal-private-methods": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@floating-ui/react": "^0.24.2",
"@floating-ui/react-dom": "^1.0.0",
"@floating-ui/react-dom-interactions": "^0.7.0",
"@headlessui/react": "^1.7.3",
"@heroicons/react": "^2.0.0",
"@hookform/resolvers": "^3.0.1",
"@rails/actioncable": "^6.0",
"@react-hook/resize-observer": "^1.2.6",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/line-clamp": "^0.4.0",
"@tailwindcss/typography": "^0.5.8",
"@tanstack/react-query": "^4.29.7",
"@tanstack/react-query-devtools": "^4.29.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@use-gesture/react": "^10.2.19",
"autoprefixer": "^10.4.8",
"axios": "^0.27.2",
"babel-loader": "^8.2.5",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"css-loader": "^6.7.1",
"dayjs": "^1.9.4",
"framer-motion": "^7.3.5",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.16",
"postcss-cli": "^10.0.0",
"postcss-import": "^15.0.0",
"postcss-nesting": "^10.1.10",
"postcss-preset-env": "^7.8.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"react-router-dom": "^6.10.0",
"react-share": "^4.4.1",
"react-use": "^17.4.0",
"sass": "^1.54.8",
"sass-loader": "^13.0.2",
"swagger-ui": "^4.1.0",
"tailwindcss": "^3.1.8",
"terser-webpack-plugin": "^5.3.6",
"typescript": "^4.7.4",
"uuid": "^9.0.0",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0",
"webpack-remove-empty-scripts": "^0.8.1",
"yup": "^1.0.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0"
},
"scripts": {
"build": "webpack --config config/webpack/webpack.config.js",
"build:css": "postcss ./app/assets/stylesheets/application.css -o ./app/assets/builds/application.css"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react",
"@babel/preset-typescript"
]
}
}