-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.09 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
{
"name": "udug",
"version": "0.1.0",
"license": "EUPL-1.2",
"dependencies": {
"@auth0/auth0-react": "1.12.1",
"@entur/alert": "0.17.0",
"@entur/button": "2.10.15",
"@entur/dropdown": "3.0.37",
"@entur/form": "5.4.20",
"@entur/icons": "4.3.3",
"@entur/layout": "2.4.0",
"@entur/loader": "0.5.17",
"@entur/menu": "4.2.40",
"@entur/micro-frontend": "0.4.0",
"@entur/modal": "1.7.60",
"@entur/table": "4.9.0",
"@entur/tokens": "3.17.5",
"@entur/typography": "1.9.0",
"@sentry/react": "7.120.3",
"@sentry/tracing": "7.120.3",
"husky": "7.0.4",
"lint-staged": "12.5.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-intl": "6.8.9",
"react-router-dom": "5.3.4",
"react-scripts": "5.0.1"
},
"scripts": {
"start": "react-scripts start",
"prebuild": "npm run compile-i18n",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier src --write",
"check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"extract-i18n": "formatjs extract 'src/**/*.ts*' --ignore='**/*.d.ts' --out-file lang/en.json --id-interpolation-pattern '[sha512:contenthash:base64:6]'",
"compile-i18n": "formatjs compile-folder --ast lang compiled-lang"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@formatjs/cli": "5.1.13",
"@types/jest": "28.1.8",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@types/react-router-dom": "5.3.3",
"prettier": "2.8.8",
"source-map-explorer": "2.5.3",
"typescript": "4.9.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
}
}