forked from TheOdinProject/theodinproject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.01 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
{
"license": "MIT",
"scripts": {
"test": "jest --coverage",
"eslint": "eslint --max-warnings 0 './app/javascript/**/*.js'"
},
"dependencies": {
"@babel/eslint-parser": "^7.16.3",
"@babel/plugin-proposal-private-methods": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@hookform/resolvers": "2.8.3",
"@hotwired/stimulus": "^3.0.1",
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"@rails/ujs": "^6.1.4",
"@rails/webpacker": "5.4.3",
"@sentry/browser": "^6.15.0",
"autoprefixer": "^9",
"axios": "^0.24.0",
"babel-plugin-prismjs": "^2.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"bootstrap": "^4.6.0",
"browserslist": "^4.18.1",
"core-js": "^3.19.1",
"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",
"prismjs": "^1.25.0",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-flip-move": "^3.0.4",
"react-hook-form": "7.19.5",
"react-scrolllock": "^5.0.1",
"react-tabs": "^3.2.3",
"react_ujs": "^2.6.1",
"regenerator-runtime": "^0.13.9",
"stickyfilljs": "^2.1.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"turbolinks": "^5.2.0",
"validate.js": "^0.13.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.3.1",
"webpack-dev-server": "^3"
},
"jest": {
"clearMocks": true,
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"<rootDir>/config/",
"/node_modules/",
"/vendor/"
],
"setupFilesAfterEnv": [
"<rootDir>/setupTests.js"
]
}
}