forked from wnbrb/wnb-rb-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.92 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
{
"name": "wnb-rb-site",
"private": true,
"dependencies": {
"@babel/preset-react": "^7.14.5",
"@fullhuman/postcss-purgecss": "^4.0.3",
"@rails/actioncable": "^7.0.0",
"@rails/activestorage": "^7.0.0",
"@rails/ujs": "^7.0.0",
"@rails/webpacker": "5.4.0",
"@tailwindcss/aspect-ratio": "^0.2.2",
"@tailwindcss/forms": "^0.3.4",
"@tailwindcss/line-clamp": "^0.2.2",
"@tailwindcss/typography": "^0.4.1",
"autoprefixer": "^10.2.6",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"dayjs": "^1.10.7",
"postcss": "^8.2.10",
"postcss-loader": "^4.0.3",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-cookie": "^4.1.1",
"react-dom": "^17.0.2",
"sass": "^1.43.4",
"sass-loader": "^10.1.1",
"tailwindcss": "^2.2.16",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"version": "0.1.0",
"devDependencies": {
"@prettier/plugin-ruby": "^2.0.0-rc4",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.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": "4",
"jest": "^27.2.0",
"lint-staged": "^11.1.2",
"prettier": "^2.4.1",
"typescript": "^4.4.3",
"webpack-dev-server": "^3"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --quiet --fix"
],
"*.{js,jsx,json,md,html}": [
"prettier --write"
],
"*.rb": [
"rubocop --force-exclusion"
]
}
}