-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.97 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
{
"name": "todo-list-frontende",
"version": "0.1.0",
"private": false,
"license": "Apache-2.0",
"homepage": "/",
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"start": "react-scripts start"
},
"dependencies": {
"@carbon/icons-react": "^11.27.0",
"@carbon/react": "1.32.0",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@ibm/plex": "^6.4.0",
"axios": "^1.5.1",
"core-js": "^3.33.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-pdf": "^7.5.1",
"react-router-dom": "^6.16.0",
"react-scripts": "^5.0.1",
"sass": "1.51.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"http-proxy-middleware": "^2.0.6",
"lint-staged": "^15.1.0",
"prettier": "^2.8.4",
"wait-for-expect": "3.0.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
"defaults",
"not IE 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"babel": {
"presets": [
"@babel/preset-react"
]
},
"lint-staged": {
"*.js": [
"npm run format:staged",
"git add"
],
"*.{scss,css}": [
"npm run format:staged",
"git add"
],
"*.md": [
"npm run format:staged",
"git add"
]
}
}