This repository has been archived by the owner on Jul 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.22 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
{
"name": "railsstarter",
"version": "0.1.0",
"private": true,
"scripts": {
"lint": "eslint --ext js,jsx frontend app/assets config",
"lint-styles": "stylelint '{frontend,app/assets}/**/*.{css,scss}'",
"test": "BABEL_ENV=test NODE_ENV=test jest frontend"
},
"dependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.17.12",
"@rails/actioncable": "^7.0.3",
"@rails/activestorage": "^7.0.3",
"@rails/webpacker": "^6.0.0-rc.6",
"@testing-library/react": "^12.1.5",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"cssnano": "^5.1.13",
"mini-css-extract-plugin": "^2.6.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^14.1.0",
"postcss-preset-env": "^6.7.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-imported-component": "^6.5.3",
"react-router-dom": "^6.3.0",
"redaxios": "^0.5.0",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"babel-jest": "^28.1.1",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.24.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^29.1.2",
"jest-environment-jsdom": "^28.1.1",
"prettier": "^2.6.2",
"react-refresh": "^0.14.0",
"style-loader": "^3.3.1",
"stylelint": "^14.6.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-order": "^5.0.0",
"stylelint-prettier": "^2.0.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-dev-server": "^4.7.4"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"testEnvironment": "jsdom"
},
"browserslist": [
"> 2%",
"not dead",
"not IE 11"
]
}