forked from podkrepi-bg/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.84 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
119
120
121
122
{
"name": "podkrepi-bg-frontend",
"version": "0.9.13",
"license": "MIT",
"repository": "https://github.com/orgs/podkrepi-bg",
"packageManager": "[email protected]",
"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 && next build",
"start": "next start -p 3040",
"test": "jest --env=jsdom",
"test:e2e": "cd ./e2e && yarn run test:e2e",
"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 --list-different --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",
"sitemap": "next-sitemap"
},
"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.10.14",
"@mui/lab": "^5.0.0-alpha.69",
"@mui/material": "^5.10.14",
"@mui/styles": "^5.10.14",
"@mui/x-data-grid": "^5.17.2",
"@mui/x-date-pickers": "^5.0.8",
"@next/font": "^13.0.5",
"@paypal/react-paypal-js": "^7.8.1",
"@react-pdf/renderer": "^3.1.3",
"@sentry/nextjs": "7.21.1",
"@stripe/react-stripe-js": "^1.16.1",
"@stripe/stripe-js": "^1.46.0",
"@tanstack/react-query": "^4.16.1",
"@tryghost/content-api": "^1.11.4",
"axios": "0.21.4",
"axios-hooks": "2.7.0",
"date-fns": "2.24.0",
"formik": "2.2.9",
"i18next": "^21.6.16",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"mobx": "6.3.2",
"mobx-react": "7.2.0",
"next": "^13.1.6",
"next-auth": "^4.20.1",
"next-i18next": "^13.0.0",
"nookies": "^2.5.2",
"quill-blot-formatter": "^1.0.5",
"quill-html-edit-button": "^2.2.12",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-gtm-module": "2.0.11",
"react-i18next": "^11.17.1",
"react-quill": "^2.0.0-beta.4",
"react-slick": "^0.29.0",
"sharp": "^0.30.5",
"slick-carousel": "^1.8.1",
"slugify": "^1.6.0",
"socket.io-client": "^4.5.4",
"yup": "0.32.9"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.1.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/cookie": "^0.4.1",
"@types/lodash.truncate": "^4.4.7",
"@types/lru-cache": "^5.1.1",
"@types/node": "14.14.37",
"@types/react": "18.0.25",
"@types/react-dom": "^18.0.0",
"@types/react-gtm-module": "2.0.0",
"@types/react-slick": "^0.23.10",
"@types/tryghost__content-api": "^1.3.11",
"@types/uuid": "^9.0.0",
"@types/yup": "0.29.11",
"@typescript-eslint/eslint-plugin": "4.26.0",
"@typescript-eslint/parser": "4.26.0",
"all-contributors-cli": "^6.20.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",
"next-sitemap": "^3.1.52",
"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.8.3"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"yarn run lint"
],
"*.{ts,tsx,js,json}": [
"yarn run format"
],
"*.scss": "yarn run lint:styles"
},
"browser": {
"html-pdf": false
}
}