-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.38 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
{
"name": "oslo-kommune-ombruk",
"version": "1.0.0",
"description": "",
"main": "index.tsx",
"repository": {
"type": "git",
"url": "ssh://git@kode.knowit.no:7999/oko/ombruk.git"
},
"scripts": {
"start": "webpack serve --config webpack.dev.js",
"build:development": "webpack --config webpack.dev.js",
"build:production": "webpack --config webpack.prod.js",
"lint": "eslint --fix --ignore-path .eslintignore --ext js,jsx,ts,tsx,mdx .",
"check-types": "tsc",
"test": "jest",
"coverage": "jest --coverage",
"coverage-summary": "jest --coverage --coverageReporters=\"text-summary\"",
"cypress": "cypress run",
"gen:theme-typings": "yarn chakra-cli tokens src/theme/index.ts",
"postinstall": "yarn run gen:theme-typings"
},
"engines": {
"node": "^14.16.1",
"npm": "please-use-yarn",
"yarn": "^1.22.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run lint && yarn run test"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mdx}": "eslint --cache --fix --ignore-path .eslintignore"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@chakra-ui/cli": "^1.3.1",
"@svgr/webpack": "^5.5.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^12.0.0",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/react": "^17.0.3",
"@types/react-big-calendar": "^0.33.1",
"@types/react-dom": "^17.0.3",
"@types/react-helmet": "^6.1.0",
"@types/react-router-dom": "^5.1.7",
"@types/yup": "^0.29.11",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"css-loader": "^5.2.4",
"dotenv-webpack": "^7.0.2",
"eslint": "^7.18.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-jest-dom": "^3.6.5",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^4.1.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"husky": "^4.3.8",
"jest": "^27.0.4",
"lint-staged": "^11.0.0",
"prettier": "^2.2.1",
"source-map-loader": "^3.0.0",
"style-loader": "^2.0.0",
"ts-jest": "^27.0.3",
"ts-loader": "^9.0.0",
"typescript": "^4.1.3",
"webpack": "^5.34.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"@chakra-ui/react": "^1.6.1",
"@chakra-ui/skip-nav": "^1.1.11",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@hookform/error-message": "^2.0.0",
"@hookform/resolvers": "^2.4.0",
"@react-keycloak/web": "^3.4.0",
"axios": "^0.21.1",
"date-fns": "^2.16.1",
"focus-visible": "^5.2.0",
"framer-motion": "^4.1.14",
"keycloak-js": "^10.0.2",
"lemons": "^1.6.0",
"lodash": "^4.17.21",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-big-calendar": "^0.33.2",
"react-day-picker": "^7.4.8",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.3",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.2.1",
"react-query": "^3.5.16",
"react-router-dom": "^5.2.0",
"use-route-as-state": "^4.1.0",
"yup": "^0.32.8"
}
}