-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.65 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
123
124
125
126
127
{
"name": "orgatrips",
"version": "1.0.0",
"scripts": {
"prepare": "husky install",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next dev",
"build-stats": "cross-env ANALYZE=true npm run build",
"export": "next export",
"lint-check:react": "cross-env NODE_ENV=production && eslint *.js src --ext .ts,.tsx,.js --no-fix --max-warnings=0",
"lint-check:typing": "tsc --noEmit",
"lint-check:prettier": "prettier --check src",
"lint-fix:react": "cross-env NODE_ENV=production && eslint *.js src --ext .ts,.tsx,.js --max-warnings=0 --fix",
"lint-fix:prettier": "prettier --write src"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"browser": {
"fs": false,
"path": false
},
"targets": {
"developmentBuild": {
"distDir": "build",
"scopeHoist": false
},
"productionBuild": {
"distDir": "build",
"sourceMap": false,
"scopeHoist": false
}
},
"dependencies": {
"@tanstack/react-query": "^4.28.0",
"anylogger": "^1.0.11",
"axios": "^0.21.1",
"classnames": "^2.3.1",
"content-disposition": "^0.5.4",
"date-fns": "^2.22.1",
"downshift": "^7.6.0",
"formik": "^2.2.9",
"framer-motion": "^10.9.1",
"i18n-iso-countries": "^7.5.0",
"i18next": "^21.6.11",
"mime": "^3.0.0",
"next": "^13.2.1",
"next-i18next": "^13.1.5",
"next-sitemap": "^4.0.2",
"next-translate-routes": "^1.9.2",
"nextjs-google-analytics": "^2.3.3",
"path-to-regexp": "^6.2.1",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-datepicker": "^4.10.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.15.4",
"react-input-range": "^1.3.0",
"react-multi-select-component": "^4.3.4",
"react-onclickoutside": "^6.13.0",
"react-schemaorg": "^2.0.0",
"react-toast-notifications": "^2.5.1",
"sass": "^1.62.1",
"schema-dts": "^1.1.2",
"sharp": "^0.31.3",
"suneditor": "^2.44.12",
"suneditor-react": "^3.5.0",
"ulog": "^2.0.0-beta.19",
"yup": "0.32.11"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@next/bundle-analyzer": "^13.2.3",
"@next/eslint-plugin-next": "^13.1.1",
"@tailwindcss/forms": "^0.5.3",
"@types/content-disposition": "^0.5.5",
"@types/mime": "^3.0.1",
"@types/node": "^17.0.13",
"@types/react": "^18.0.28",
"@types/react-datepicker": "^4.8.0",
"@types/react-dom": "^18.0.11",
"@types/react-infinite-calendar": "^2.3.6",
"@types/react-is": "^17.0.3",
"@types/react-onclickoutside": "^6.7.4",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"autoprefixer": "^10.4.2",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"cssnano": "^5.0.16",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.7.0",
"eslint-config-next": "13.1.1",
"eslint-config-prettier": "^8.2.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-deprecation": "^1.3.2",
"eslint-plugin-i18next": "^5.1.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^7.0.4",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.17",
"typescript": "^4.1.2"
},
"resolutions": {
"yup": "./lib-replacements/yup-v0.32.11.tgz"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"license": "MIT"
}