forked from TheOdinProject/theodinproject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.03 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
{
"license": "MIT",
"version": "1.0.0",
"private": true,
"scripts": {
"test": "jest --coverage",
"eslint": "eslint --max-warnings 0 './app/javascript/**/*.js' './app/components/**/*.js'"
},
"dependencies": {
"@babel/core": "7",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-transform-runtime": "7",
"@babel/preset-env": "7",
"@babel/preset-react": "^7.18.6",
"@babel/runtime": "7",
"@fortawesome/fontawesome-free": "^6.2.1",
"@hookform/resolvers": "2.9.10",
"@hotwired/stimulus": "^3.1.0",
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"@hotwired/turbo-rails": "^7.2.4",
"@rails/ujs": "^7.0.4",
"@sentry/browser": "^7.31.1",
"@stimulus/polyfills": "^2.0.0",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.8",
"autoprefixer": "^10",
"axios": "^1.2.6",
"babel-loader": "8",
"babel-plugin-prismjs": "^2.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"browserslist": "^4.21.4",
"compression-webpack-plugin": "10",
"core-js": "^3.27.2",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"el-transition": "^0.0.7",
"hint.css": "^2.7.0",
"humps": "^2.0.1",
"js-base64": "^3.7.3",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.6.1",
"notyf": "^3.10.0",
"pnp-webpack-plugin": "1",
"postcss": "^8.4.20",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^15.1.0",
"postcss-loader": "^7.0.1",
"postcss-preset-env": "^7.8.3",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-flip-move": "^3.0.5",
"react-hook-form": "7.37.0",
"react-scrolllock": "^5.0.1",
"react-tabs": "4.2.1",
"react_ujs": "^2.6.2",
"regenerator-runtime": "^0.13.10",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"shakapacker": "6.5.5",
"stickyfilljs": "^2.1.0",
"stimulus-use": "^0.51.1",
"stimulus-validation": "^1.0.1-beta.3",
"style-loader": "^3.3.1",
"tailwindcss": "^3.2.4",
"terser-webpack-plugin": "5",
"webpack": "5",
"webpack-assets-manifest": "5",
"webpack-cli": "4",
"webpack-merge": "5",
"webpack-remove-empty-scripts": "^1.0.1",
"yup": "^0.32.11"
},
"browserslist": [
"defaults"
],
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"eslint": "^8.26.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.4.1",
"webpack-dev-server": "^4.11.1"
},
"jest": {
"clearMocks": true,
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"<rootDir>/config/",
"/node_modules/",
"/vendor/"
],
"setupFilesAfterEnv": [
"<rootDir>/setupTests.js"
]
}
}