-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.67 KB
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
{
"lint-staged": {
"app/**/*.{js,jsx,json}": [
"prettier --write",
"eslint --fix"
],
"{package.json,.eslintrc.js,.prettierrc.js}": [
"prettier --write",
"eslint --fix"
],
".eslint-rules/**/*": [
"prettier --write",
"eslint --fix"
],
"./**/*.rb": [
"bundle exec rubocop -a --force-exclusion"
],
"{Gemfile,Rakefile,config.ru}": [
"bundle exec rubocop -a --force-exclusion"
],
"app/views/**/*.html.erb": [
"bundle exec erblint --lint-all --format compact -a"
]
},
"name": "app",
"private": true,
"devDependencies": {
"@babel/eslint-parser": "7.17.0",
"esbuild": "^0.27.2",
"eslint": "8.12.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jam3": "0.2.3",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.4.0",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "^8.0.0",
"lint-staged": "12.3.7",
"prettier": "^2.6.1",
"prettier-plugin-tailwindcss": "^0.1.8"
},
"scripts": {
"build": "node esbuild.config.js",
"dev": "vite",
"prepare": "husky install"
},
"dependencies": {
"@babel/core": "^7.19.1",
"@babel/plugin-transform-react-constant-elements": "^7.25.9",
"@babel/plugin-transform-runtime": "7.19.1",
"@babel/preset-env": "7.17.10",
"@babel/preset-react": "^7.16.7",
"@floating-ui/react": "^0.26.6",
"@hotwired/stimulus": "^3.2.2",
"@hotwired/turbo-rails": "^8.0.21",
"@rollup/pluginutils": "^5.1.4",
"@svgr/plugin-svgo": "^8.1.0",
"axios": "1.7.7",
"babel-plugin-js-logger": "^1.0.17",
"babel-plugin-macros": "^3.1.0",
"buffer": "^6.0.3",
"classnames": "2.3.1",
"crypto-browserify": "^3.12.1",
"esbuild-plugin-svgr": "^3.1.0",
"esbuild-plugins-node-modules-polyfill": "^1.6.8",
"esbuild-sass-plugin": "^3.3.1",
"i18next": "21.7.0",
"js-logger": "^1.6.1",
"path-browserify": "^1.0.1",
"postcss": "^8.4.31",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^15.1.0",
"postcss-preset-env": "7.8.2",
"prop-types": "^15.8.1",
"ramda": "0.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "5.3.0",
"react-select": "5.7.4",
"react-toastify": "8.0.2",
"react_ujs": "3.1.1",
"remixicon": "^4.8.0",
"sass": "^1.59.3",
"stream-browserify": "^3.0.0",
"tailwindcss": "^3.4.1",
"vite": "^5.0.0",
"vite-plugin-svgr": "^4.3.0"
},
"resolutions": {
"strip-ansi": "^6.0.1",
"string-width": "^4.2.2"
}
}