-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.08 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
{
"name": "rails_swedish_birds_checklist",
"private": true,
"dependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.21.5",
"@fortawesome/fontawesome-svg-core": "^6.1.2",
"@fortawesome/free-solid-svg-icons": "^6.1.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@popperjs/core": "^2.11.5",
"@rails/ujs": "^6.1.7",
"@reduxjs/toolkit": "^1.8.5",
"babel-loader": "^9.1.2",
"babel-plugin-macros": "^3.1.0",
"bootstrap": "^4.6.2",
"compression-webpack-plugin": "^10.0.0",
"jquery": "^3.6.1",
"popper.js": "^1.16.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.2",
"redux": "^4.2.0",
"redux-devtools-extension": "^2.13.9",
"redux-logger": "^3.0.6",
"shakapacker": "^6.0.2",
"terser-webpack-plugin": "^5.3.7",
"typescript": "^4.7.4",
"webpack": "^5.81.0",
"webpack-assets-manifest": "^5.1.0",
"webpack-cli": "^5.0.2",
"webpack-merge": "^5.8.0",
"webpack-sources": "^3.2.3"
},
"version": "0.1.0",
"babel": {
"presets": [
"./babel.config.js"
]
},
"browserslist": [
"defaults"
],
"devDependencies": {
"@types/jest": "^29.2.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.8",
"@types/redux-logger": "^3.0.9",
"@webpack-cli/serve": "^2.0.2",
"babel-plugin-dynamic-import-node": "^2.3.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.2",
"jest": "^29.2.2",
"lint-staged": "^13.0.3",
"ts-standard": "^11.0.0",
"webpack-dev-server": "^4.13.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"ts-standard --fix"
],
"*.rb": [
"bundle exec rubocop -A"
]
},
"scripts": {
"lint": "ts-standard app/javascript",
"test": "jest app/javascript",
"prepare": "husky install"
}
}