-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
109 lines (109 loc) · 3.4 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
{
"name": "podkrepi-bg-frontend",
"version": "0.9.8",
"license": "MIT",
"repository": "https://github.com/orgs/podkrepi-bg",
"scripts": {
"predev": "shx test -e .env.local && exit 0 || shx echo 'You need to create .env.local file. Please check README.md!' && exit 1",
"dev": "yarn && next dev -p 3040",
"build": "yarn format && next build",
"start": "next start -p 3040",
"test": "jest --env=jsdom",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"test:watch": "jest --env=jsdom --watch --silent=false",
"lint": "eslint . --fix --ext=ts,tsx",
"lint:next": "next lint",
"lint:styles": "stylelint **.scss",
"format": "prettier --write .",
"type-check": "tsc --noEmit",
"prepare": "husky install",
"release": "./manifests/release.sh",
"release:patch": "./manifests/release.sh patch",
"postversion": "./manifests/postrelease.sh v$npm_package_version",
"analyze": "ANALYZE=true next build"
},
"dependencies": {
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.8.1",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.4.2",
"@mui/lab": "^5.0.0-alpha.69",
"@mui/material": "^5.4.2",
"@mui/styles": "^5.4.2",
"@mui/x-data-grid": "^5.5.1",
"@mui/x-date-pickers": "^5.0.0-alpha.1",
"@next/bundle-analyzer": "^12.1.0",
"@react-keycloak/ssr": "3.3.0",
"@sentry/nextjs": "6.17.8",
"@uppy/aws-s3": "2.0.5",
"@uppy/core": "2.1.1",
"@uppy/facebook": "2.0.4",
"@uppy/google-drive": "2.0.4",
"@uppy/image-editor": "1.0.4",
"@uppy/react": "2.1.1",
"@widgetbot/react-embed": "^1.4.0",
"axios": "0.21.4",
"axios-hooks": "2.7.0",
"bear-react-carousel": "^1.2.15",
"date-fns": "2.24.0",
"formik": "2.2.9",
"highcharts": "9.1.0",
"highcharts-react-official": "3.0.0",
"keycloak-js": "^15.0.2",
"lodash": "^4.17.21",
"mobx": "6.3.2",
"mobx-react": "7.2.0",
"next": "^12.1.0",
"next-i18next": "8.4.0",
"nookies": "^2.5.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-gtm-module": "2.0.11",
"react-in-viewport": "1.0.0-alpha.17",
"react-query": "^3.23.2",
"sass": "1.34.1",
"sharp": "^0.30.2",
"slugify": "^1.6.0",
"typewriter-effect": "2.17.0",
"yup": "0.32.9"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/cookie": "^0.4.1",
"@types/lodash.truncate": "^4.4.7",
"@types/lru-cache": "^5.1.1",
"@types/node": "14.14.37",
"@types/react": "17.0.3",
"@types/react-gtm-module": "2.0.0",
"@types/yup": "0.29.11",
"@typescript-eslint/eslint-plugin": "4.26.0",
"@typescript-eslint/parser": "4.26.0",
"depcheck": "^1.4.3",
"eslint": "7.27.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "7.0.1",
"jest": "^27.3.1",
"lint-staged": "11.0.0",
"prettier": "2.3.0",
"shx": "^0.3.3",
"stripe": "^8.184.0",
"stylelint": "^14.5.0",
"stylelint-config-sass-guidelines": "9.0.1",
"typescript": "4.5.5"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"yarn run lint"
],
"*.{ts,tsx,js,json}": [
"yarn run format"
],
"*.scss": "yarn run lint:styles"
}
}