forked from TheOdinProject/theodinproject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.87 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
{
"license": "MIT",
"scripts": {
"test": "jest --coverage",
"eslint": "eslint --max-warnings 0 './app/javascript/**/*.js'"
},
"dependencies": {
"@babel/plugin-proposal-private-methods": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@hookform/resolvers": "2.8.2",
"@rails/ujs": "^6.1.4",
"@rails/webpacker": "5.4.3",
"@sentry/browser": "^6.13.3",
"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.17.5",
"core-js": "^3.19.0",
"hint.css": "^2.7.0",
"jquery": "^3.6.0",
"js-base64": "^3.7.2",
"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.18.0",
"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": "^3.0.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"toaster": "^0.1.2",
"turbolinks": "^5.2.0",
"validate.js": "^0.13.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.3.1",
"webpack-dev-server": "^3"
},
"jest": {
"clearMocks": true,
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"<rootDir>/config/",
"/node_modules/",
"/vendor/"
],
"setupFilesAfterEnv": [
"<rootDir>/setupTests.js"
]
}
}