-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
117 lines (117 loc) · 3.43 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
{
"name": "granite",
"private": true,
"version": "0.1.0",
"engines": {
"node": "18.12",
"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-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"
]
},
"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",
"@rails/actioncable": "^6.0.0",
"@rails/activestorage": "^6.0.0",
"@rails/ujs": "^6.0.0",
"@svgr/webpack": "6.5.1",
"axios": "^0.26.1",
"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",
"css-loader": "^6.7.3",
"dotenv-webpack": "^8.0.1",
"file-saver": "^2.0.5",
"framer-motion": "^10.16.4",
"i18next": "21.7.0",
"ignore-loader": "^0.1.2",
"js-logger": "^1.6.1",
"mini-css-extract-plugin": "^2.7.5",
"postcss": "^8.4.21",
"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.28.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "5.3.3",
"react-select": "^3.1.1",
"react-toastify": "8.0.2",
"react_ujs": "^3.1.1",
"remixicon": "^2.5.0",
"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": "^2.1.2",
"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"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"autoprefixer": "9",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jam3": "^0.2.3",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "4.2.1-alpha-13455d26d-20211104",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"webpack-dev-server": "^4.13.1"
}
}