-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
66 lines (66 loc) · 1.8 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
{
"name": "ui5-webcomponents-sample-react",
"version": "0.7.0",
"homepage": "./",
"dependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.108",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@ui5/webcomponents": "^2.2.0",
"@ui5/webcomponents-base": "^2.2.0",
"@ui5/webcomponents-fiori": "^2.2.0",
"@ui5/webcomponents-icons": "^2.2.0",
"eslint": "^8.57.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "5.0.1",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src",
"lint:staged": "lint-staged",
"lint:commit": "commitlint -e",
"prettier": "prettier --write .",
"prettier:staged": "pretty-quick --staged --verbose",
"prepare": "node ./.husky/skip.js || husky install",
"hooks:pre-commit": "run-s prettier:staged lint:staged",
"hooks:pre-push": "run-s lint:commit"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3"
}
}