-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.18 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
{
"name": "epr-registration-tool",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --watch",
"test:ci": "jest --ci",
"lint": "run-p lint:ts lint:eslint lint:prettier",
"lint:eslint": "eslint --ext=ts --ext=tsx --ext=js --ext=jsx .",
"lint:prettier": "prettier --check \"**/*.{ts,tsx,js,jsx,json,yaml}\"",
"lint:ts": "tsc --pretty --noEmit",
"format": "run-s format:eslint format:prettier",
"format:eslint": "yarn lint:eslint --fix",
"format:prettier": "yarn lint:prettier --write",
"storybook": "start-storybook -p 9009 --ci",
"generate-types": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"@apollo/client": "^3.9.5",
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.11.3",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.8.1",
"@hookform/resolvers": "^2.8.8",
"@mui/icons-material": "^5.15.10",
"@mui/material": "^5.15.10",
"@mui/x-date-pickers": "^5.0.0-alpha.4",
"@sentry/node": "<6.0.0",
"@sentry/react": "<6.0.0",
"apollo-upload-client": "^17.0.0",
"axios": "^0.27.2",
"browser-image-compression": "^2.0.0",
"camelcase-keys": "^7.0.2",
"cookie": "^0.5.0",
"date-fns": "^2.28.0",
"deepmerge": "^4.2.2",
"graphql": "^16.5.0",
"html-react-parser": "^3.0.0",
"isomorphic-dompurify": "^0.20.0",
"lodash": "^4.17.21",
"next": "12.2.0",
"next-i18next": "^11.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.50.1",
"stylis": "^4.3.1",
"stylis-plugin-rtl": "^2.1.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@emotion/babel-plugin": "^11.9.2",
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/typescript": "^2.4.11",
"@graphql-codegen/typescript-operations": "^2.4.0",
"@graphql-codegen/typescript-react-apollo": "^3.2.14",
"@storybook/addon-a11y": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.0-rc.1",
"@storybook/react": "^6.5.9",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/apollo-upload-client": "^17.0.1",
"@types/cookie": "^0.5.1",
"@types/lodash": "^4.14.202",
"@types/node": "^18.19.0",
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.19",
"@types/stylis": "^4.2.5",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"babel-loader": "^8.2.5",
"eslint": "^8.56.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-storybook": "^0.6.1",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"storybook-addon-apollo-client": "^4.0.12",
"storybook-addon-next": "^1.6.7",
"storybook-addon-next-router": "^4.0.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.6.4"
}
}