-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.67 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
83
84
85
{
"name": "pepm-ui",
"version": "1.6.0",
"private": true,
"dependencies": {
"@azure/msal-browser": "^3.23.0",
"@azure/msal-react": "^2.0.22",
"@equinor/eds-core-react": "0.41.5",
"@equinor/eds-data-grid-react": "0.6.2",
"@equinor/eds-icons": "0.21.0",
"@equinor/eds-tokens": "0.9.2",
"@hookform/resolvers": "^3.3.2",
"@tanstack/react-query": "4.36.1",
"@tanstack/react-query-devtools": "^5.55.0",
"@tanstack/react-table": "^8.9.1",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"@types/react": "^18.3.5",
"@types/react-dom": "18.3.0",
"axios": "^1.7.4",
"echarts": "^5.5.1",
"env-cmd": "^10.1.0",
"lodash": "^4.17.21",
"msal-react-tester": "^0.3.1",
"openapi-fetch": "^0.7.2",
"openapi-typescript-codegen": "^0.25.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.47.0",
"react-router-dom": "^6.23.1",
"react-scripts": "5.0.1",
"styled-components": "6.1.13",
"typescript": "^5.5.4",
"web-vitals": "^2.1.0",
"zod": "^3.23.8",
"zustand": "^5.0.0"
},
"scripts": {
"start": "env-cmd -f .env.local react-scripts start",
"build:release": "env-cmd -f .env react-scripts build",
"build": "react-scripts build",
"test": "react-scripts test --transformIgnorePatterns \"node_modules/(?!axios)/\"",
"test:ts": "tsc --noEmit",
"eject": "react-scripts eject",
"lint": "eslint --fix --ext .ts,.tsx .",
"prettier:fix": "prettier . --write",
"prepare": "husky install",
"pre-commit": "yarn test --watchAll=false && yarn lint-staged",
"generate-schema:radix": "npx openapi-typescript https://api-pepm-dev.radix.equinor.com/swagger/v1/swagger.yaml -o src/models/schema.d.ts"
},
"lint-staged": {
"*.{ts,tsx}": "yarn lint --max-warnings 10"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^4.32.5",
"@types/lodash": "^4.14.202",
"@types/styled-components": "5.1.34",
"@types/testing-library__jest-dom": "^6.0.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"openapi-typescript": "^6.3.9",
"prettier": "^2.8.2"
}
}