-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "app",
"private": "true",
"dependencies": {
"@hotwired/stimulus": "^3.1.1",
"@hotwired/turbo-rails": "^7.2.4",
"@patternfly/react-core": "^4.264.0",
"axios": "^1.2.2",
"css-loader": "^6.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router-dom": "^6.4.5",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.2",
"babel-loader": "^9.1.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"file-loader": "^6.2.0",
"global-jsdom": "^8.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.0",
"jest-environment-jsdom": "^29.3.1",
"jsdom": "^20.0.2",
"prettier": "2.8.0",
"prop-types": "^15.8.1"
},
"scripts": {
"build": "webpack",
"lint": "eslint .",
"lint:fix": "eslint --fix",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"test": "jest"
}
}