-
Notifications
You must be signed in to change notification settings - Fork 197
/
package.json
123 lines (123 loc) · 3.6 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "Wheel",
"version": "1.0.0",
"engines": {
"node": "18.12",
"npm": "7.x",
"yarn": "1.22.x"
},
"scripts": {
"prepare": "husky install",
"sync_with_wheel": "curl -s -L \"https://raw.githubusercontent.com/bigbinary/wheel/main/.scripts/sync_with_wheel.sh\" | bash",
"lint": "eslint \"app/javascript/src/**/*.{js,jsx}\"",
"lint:fix": "eslint --fix \"app/javascript/src/**/*.{js,jsx}\""
},
"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"
],
"cypress-tests/**/*.{js,jsx,json}": [
"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"
]
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"autoprefixer": "^10.2.5",
"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": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"webpack-dev-server": "^4.13.1"
},
"dependencies": {
"@babel/core": "^7.19.1",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.21.0",
"@babel/runtime": "^7.19.0",
"@bigbinary/neeto-icons": "^1.8.17",
"@bigbinary/neetoui": "^4.0.3",
"@emotion/is-prop-valid": "^1.2.0",
"@svgr/webpack": "6.5.1",
"antd": "^4.23.1",
"axios": "^1.6.0",
"babel-loader": "^8.2.5",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-js-logger": "^1.0.17",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-preset-react": "^6.24.1",
"classnames": "^2.3.1",
"compression-webpack-plugin": "^10.0.0",
"core-js": "3.21.1",
"css-loader": "^6.7.3",
"dotenv-webpack": "^8.0.1",
"formik": "^2.2.9",
"i18next": "21.7.0",
"ignore-loader": "^0.1.2",
"js-logger": "^1.6.1",
"mini-css-extract-plugin": "^2.7.5",
"postcss": "^8.4.31",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^15.1.0",
"postcss-loader": "^7.1.0",
"postcss-preset-env": "7.8.2",
"process": "^0.11.10",
"prop-types": "^15.8.1",
"query-string": "^8.1.0",
"ramda": "^0.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "5.3.3",
"react-router-nav-prompt": "^0.4.1",
"react-toastify": "8.0.2",
"react_ujs": "^3.1.1",
"sass": "^1.59.3",
"sass-loader": "^13.2.1",
"shakapacker": "6.6.0",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.2",
"tailwindcss": "^3.4.1",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.74.0",
"webpack-assets-manifest": "^5.1.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0",
"webpack-sources": "^3.2.3",
"yup": "^0.32.11"
},
"resolutions": {
"strip-ansi": "^6.0.1",
"string-width": "^4.2.2"
}
}