This repository has been archived by the owner on Jan 4, 2022. It is now read-only.
generated from navikt/podlet-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.44 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "podlet-dittnav-meldinger",
"version": "1.0.0",
"private": true,
"dependencies": {
"@metrics/prometheus-consumer": "3.0.1",
"@podium/podlet": "4.4.14",
"@sentry/browser": "5.30.0",
"@types/react-modal": "3.12.0",
"classnames": "2.2.6",
"express": "4.17.1",
"less": "3.13.1",
"lodash.throttle": "4.1.1",
"moment": "2.29.1",
"nav-frontend-alertstriper": "3.0.51",
"nav-frontend-alertstriper-style": "2.0.38",
"nav-frontend-chevron": "1.0.28",
"nav-frontend-chevron-style": "1.0.4",
"nav-frontend-core": "5.0.11",
"nav-frontend-ikoner-assets": "2.0.10",
"nav-frontend-js-utils": "1.0.17",
"nav-frontend-lenkepanel": "1.0.75",
"nav-frontend-lenkepanel-style": "0.3.49",
"nav-frontend-lenker": "1.0.60",
"nav-frontend-lenker-style": "0.2.42",
"nav-frontend-lukknapp": "1.0.50",
"nav-frontend-lukknapp-style": "0.2.37",
"nav-frontend-modal": "1.0.63",
"nav-frontend-modal-style": "0.3.51",
"nav-frontend-paneler": "2.0.32",
"nav-frontend-paneler-style": "0.3.34",
"nav-frontend-spinner": "2.0.16",
"nav-frontend-spinner-style": "0.2.10",
"nav-frontend-typografi": "2.0.39",
"nav-frontend-typografi-style": "1.0.35",
"nav-frontend-veileder": "2.0.40",
"nav-frontend-veileder-style": "2.0.29",
"nav-frontend-veilederpanel": "0.1.49",
"nav-frontend-veilederpanel-style": "0.0.45",
"prom-client": "13.1.0",
"prop-types": "15.7.2",
"react-ga": "3.3.0",
"react-intl": "5.15.3",
"react-modal": "3.12.1",
"react-query": "3.13.0",
"react-router-dom": "5.2.0",
"swr": "0.5.4"
},
"devDependencies": {
"@eik/rollup-plugin": "4.0.2",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-commonjs": "17.1.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "11.2.1",
"@rollup/plugin-replace": "2.4.2",
"@testing-library/jest-dom": "5.11.10",
"@testing-library/react": "11.2.5",
"@testing-library/user-event": "12.8.3",
"eslint-plugin-jsx-a11y": "6.4.1",
"husky": "4.3.8",
"lint-staged": "10.5.4",
"msw": "0.28.0",
"postcss": "8.2.8",
"prettier": "2.2.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-scripts": "4.0.3",
"rollup": "2.44.0",
"rollup-plugin-livereload": "2.0.0",
"rollup-plugin-postcss": "4.0.0",
"rollup-plugin-postcss-webpack-alias-less-loader": "1.0.0",
"rollup-plugin-serve": "1.1.0",
"rollup-plugin-terser": "7.0.2"
},
"scripts": {
"start": "rollup -c rollup.config.dev.js -w",
"build": "rollup -c rollup.config.prod.js",
"test": "node --version",
"test-ci": "npm run lint && CI=true react-scripts test",
"refresh": "rm -rf node_modules && rm package-lock.json && npm i",
"lint": "eslint --ext .js,.jsx src",
"podlet": "node podlet.js",
"bump": "npx npm-check-updates --target minor -u && npm i"
},
"eslintConfig": {
"plugins": [
"jsx-a11y"
],
"extends": [
"react-app",
"react-app/jest",
"plugin:jsx-a11y/recommended"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"printWidth": 120
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,json,md}": "prettier --write"
}
}