This repository has been archived by the owner on Jan 16, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 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
67
68
69
70
71
72
73
{
"name": "minelev-web",
"version": "2.0.0",
"private": true,
"scripts": {
"start": "node server.js",
"demo": "REACT_APP_IS_MOCK=true react-scripts start",
"dev": "react-scripts start",
"build": "react-scripts build",
"test": "standard && CI=true react-scripts test",
"test:watch": "react-scripts test",
"eject": "react-scripts eject",
"refresh": "rm -rf node_modules && rm package-lock.json && npm i && npm i",
"standard-fix": "standard --fix"
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"react-hooks/exhaustive-deps": "off"
}
},
"standard": {
"env": [
"jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@sentry/react": "6.18.2",
"@sentry/tracing": "6.18.2",
"@vtfk/components": "0.7.15",
"@vtfk/react-msal": "2.0.3",
"express": "4.17.3",
"get-skole-aar": "2.1.0",
"moment": "2.29.4",
"nanoid": "3.3.8",
"prop-types": "15.8.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "7.27.1",
"react-moment": "1.1.3",
"react-notifications-component": "3.4.1",
"react-router-dom": "6.2.2",
"react-scripts": "5.0.1",
"react-scrolllock": "5.0.1",
"sass": "1.49.11",
"vtfk-schools-info": "3.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "12.1.5",
"@testing-library/react-hooks": "7.0.2",
"@testing-library/user-event": "13.5.0",
"axios": "0.27.2",
"msw": "0.38.2",
"react-test-renderer": "17.0.2",
"standard": "16.0.4"
}
}