-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
114 lines (114 loc) · 3.78 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
{
"name": "wnb-rb-site",
"private": true,
"dependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@babel/runtime": "^7.23.2",
"@fullhuman/postcss-purgecss": "^5.0.0",
"@hotwired/stimulus": "^3.2.1",
"@hotwired/turbo-rails": "^7.3.0",
"@popperjs/core": "^2.11.7",
"@rails/actioncable": "^7.0.8",
"@rails/activestorage": "^7.0.8",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.8",
"@types/babel__core": "^7.20.3",
"@types/webpack": "^5.28.4",
"autoprefixer": "^10.2.6",
"babel-loader": "^9.1.3",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"bootstrap": "^5.3.2",
"bootstrap-icons": "^1.11.1",
"compression-webpack-plugin": "^10.0.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"cssnano": "^6.0.0",
"dayjs": "^1.10.7",
"esbuild": "^0.17.11",
"formik": "^2.2.9",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^15.1.0",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^8.3.0",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-cookie": "^7.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"sass": "^1.60.0",
"sass-loader": "^13.2.0",
"shakapacker": "8.0.2",
"slim-select": "^2.9.2",
"style-loader": "^3.3.3",
"tailwindcss": "^3.3.1",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.94.0",
"webpack-assets-manifest": "^5.1.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0",
"yup": "^1.0.2"
},
"version": "0.1.0",
"babel": {
"presets": [
"./node_modules/shakapacker/package/babel/preset.js"
]
},
"browserslist": [
"defaults"
],
"devDependencies": {
"@prettier/plugin-ruby": "^3.2.2",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "8.0.3",
"jest": "^29.3.1",
"lint-staged": "^15.2.10",
"prettier": "^2.4.1",
"stylelint": "^15.10.3",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^11.0.0",
"typescript": "^5.0.4",
"webpack-dev-server": "^5.1.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --quiet --fix"
],
"*.{js,jsx,json,md,html}": [
"prettier --write"
],
"*.{css,scss}": [
"prettier --write",
"stylelint --fix"
],
"*.rb": [
"rubocop --force-exclusion"
]
},
"packageManager": "[email protected]",
"scripts": {
"build": "esbuild app/javascript/*.* --bundle --sourcemap --outdir=app/assets/builds --public-path=assets",
"build:css": "sass ./app/assets/stylesheets/admin.bootstrap.scss:./app/assets/builds/admin.css --no-source-map --load-path=node_modules",
"build:purgecss": "purgecss --config ./purgecss.config.js"
}
}