-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.81 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.81 KB
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
{
"name": "webapp",
"version": "0.37.0",
"private": false,
"scripts": {
"build": "next build",
"build-storybook": "build-storybook",
"dev": "next dev",
"format": "prettier --write \"**/*.+(js|jsx|ts|tsx|json|css|md)\"",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky install",
"release:major": "standard-version --tag-prefix='' --release-as major",
"release:minor": "standard-version --tag-prefix='' --release-as minor",
"release:patch": "standard-version --tag-prefix='' --release-as patch",
"start": "next start",
"storybook": "start-storybook -p 6006",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"analyze": "ANALYZE=true yarn build"
},
"dependencies": {
"@apollo/client": "^3.7.3",
"@draft-js-plugins/editor": "^4.1.3",
"@draft-js-plugins/linkify": "^4.2.1",
"@headlessui/react": "^1.7.7",
"@hookform/resolvers": "^2.9.10",
"@next/bundle-analyzer": "^13.1.1",
"anchorme": "^2.1.2",
"apollo-upload-client": "^17.0.0",
"classnames": "^2.3.2",
"draft-js": "^0.11.7",
"graphql": "^16.6.0",
"i18next": "^21.10.0",
"luxon": "^3.0.4",
"next": "^13.1.1",
"next-compose-plugins": "^2.2.1",
"next-pwa": "^5.6.0",
"next-themes": "^0.2.1",
"postcss-nesting": "^10.2.0",
"prettier-plugin-tailwindcss": "^0.2.1",
"react": "^18.2.0",
"react-device-detect": "^2.2.2",
"react-dom": "^18.2.0",
"react-easy-crop": "^4.6.3",
"react-hook-form": "^7.41.5",
"react-hot-toast": "^2.4.0",
"react-i18next": "^12.1.1",
"react-infinite-scroll-component": "^6.1.0",
"react-textarea-autosize": "^8.4.0",
"subscriptions-transport-ws": "^0.11.0",
"swiper": "^8.4.5",
"use-debounce": "^9.0.2",
"uuid": "^9.0.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@commitlint/cli": "^17.4.0",
"@commitlint/config-conventional": "^17.4.0",
"@storybook/addon-actions": "^6.5.15",
"@storybook/addon-essentials": "^6.5.15",
"@storybook/addon-links": "^6.5.15",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.5.15",
"@svgr/webpack": "^5.5.0",
"@tailwindcss/forms": "^0.5.3",
"@testing-library/dom": "^8.19.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/apollo-upload-client": "^17.0.2",
"@types/draft-js": "^0.11.10",
"@types/google-one-tap": "^1.2.2",
"@types/jest": "^29.2.5",
"@types/luxon": "^3.2.0",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/tailwindcss": "^3.1.0",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"autoprefixer": "^10.4.13",
"babel-jest": "^29.3.1",
"babel-loader": "^9.1.2",
"babel-plugin-polyfill-corejs2": "^0.3.3",
"babel-plugin-polyfill-corejs3": "^0.6.0",
"babel-plugin-polyfill-regenerator": "^0.4.1",
"eslint": "<8.31.0",
"eslint-config-next": "^13.1.1",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^13.1.0",
"postcss": "^8.4.20",
"postcss-import": "^15.1.0",
"prettier": "^2.8.1",
"standard-version": "^9.5.0",
"storybook-css-modules-preset": "^1.1.1",
"storybook-dark-mode": "^2.0.5",
"tailwindcss": "^3.2.4",
"ts-jest": "^29.0.3",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.9.4"
},
"lint-staged": {
"**/*.{ts,js,tsx,jsx,css,json}": "prettier --write --ignore-unknown --ignore-path .prettierignore",
"**/*.{ts,js,tsx,jsx,json}": "yarn lint:fix"
}
}