forked from TheOdinProject/theodinproject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.12 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
{
"license": "MIT",
"scripts": {
"test": "jest --coverage",
"eslint": "eslint --max-warnings 0 './app/javascript/**/*.js'"
},
"dependencies": {
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-private-methods": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@fortawesome/fontawesome-free": "^6.1.1",
"@hookform/resolvers": "2.8.8",
"@hotwired/stimulus": "^3.0.1",
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"@rails/ujs": "^7.0.2",
"@rails/webpacker": "5.4.3",
"@sentry/browser": "^6.19.2",
"autoprefixer": "^9",
"axios": "^0.26.1",
"babel-plugin-prismjs": "^2.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"bootstrap": "^4.6.0",
"browserslist": "^4.20.2",
"core-js": "^3.21.1",
"el-transition": "^0.0.7",
"hint.css": "^2.7.0",
"humps": "^2.0.1",
"jquery": "^3.6.0",
"js-base64": "^3.7.2",
"lodash": "^4.17.21",
"notyf": "^3.10.0",
"popper.js": "^1.16.1",
"postcss": "^7",
"postcss-import": "^12.0.1",
"prismjs": "^1.27.0",
"prop-types": "^15.8.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-flip-move": "^3.0.4",
"react-hook-form": "7.28.1",
"react-scrolllock": "^5.0.1",
"react-tabs": "3.2.3",
"react_ujs": "^2.6.1",
"regenerator-runtime": "^0.13.9",
"stickyfilljs": "^2.1.0",
"stimulus-use": "^0.50.0-2",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"validate.js": "^0.13.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.4",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.5.1",
"webpack-dev-server": "^3"
},
"jest": {
"clearMocks": true,
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"<rootDir>/config/",
"/node_modules/",
"/vendor/"
],
"setupFilesAfterEnv": [
"<rootDir>/setupTests.js"
]
}
}