-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 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
{
"name": "sticker-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "env-cmd -f ./.env.development node server.js",
"local": "env-cmd -f ./.env.local next dev -p 3005",
"debug": "env-cmd -f ./.env.debug next dev -p 3005",
"build": "next build",
"buildprod": "env-cmd -f ./.env.production next build",
"start": "next start -p $PORT",
"startcer": "node server.js",
"builddocker": "next build",
"heroku-postbuild": "npm run build",
"lint:es": "eslint --fix . --ext ts,tsx,js",
"format": "prettier --write src/**/*.{ts,tsx}",
"precommit": "lint-staged"
},
"dependencies": {
"@fancyapps/ui": "^4.0.26",
"@microsoft/signalr": "^6.0.4",
"@svgr/webpack": "^6.1.2",
"@types/jquery": "^3.5.14",
"@types/moment": "^2.13.0",
"@types/react-dom": "^18.0.3",
"@types/react-facebook-login": "^4.1.4",
"@types/react-image-gallery": "^1.0.5",
"@types/react-slick": "^0.23.8",
"@types/styled-components": "^5.1.24",
"add": "^2.0.6",
"antd": "^4.19.3",
"axios": "^0.27.2",
"bootstrap": "^4.6.0",
"classnames": "^2.3.1",
"cookie-universal": "^2.1.5",
"date-fns": "^2.25.0",
"eslint-config-next": "^11.1.2",
"formik": "^2.2.9",
"history": "^5.0.1",
"jquery": "^3.6.1",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"next": "^12.1.0",
"next-plugin-svgr": "^1.0.0",
"numeral": "^2.0.6",
"qrcode.react": "^3.0.2",
"qs": "^6.10.3",
"rc-menu": "8.3.1",
"react": "17.0.2",
"react-addons-update": "^15.6.3",
"react-code-input": "^3.10.1",
"react-cookie": "^4.1.1",
"react-countdown": "^2.3.2",
"react-countdown-circle-timer": "^3.0.9",
"react-dom": "17.0.2",
"react-error-boundary": "^3.1.4",
"react-facebook-login": "^4.1.1",
"react-glider": "^3.0.0",
"react-google-login": "^5.2.2",
"react-hot-toast": "^2.2.0",
"react-image-gallery": "^1.2.8",
"react-image-lightbox": "^5.1.4",
"react-loading-skeleton": "^3.0.3",
"react-paginate": "^8.1.0",
"react-phone-number-input": "^3.1.47",
"react-redux": "^7.2.5",
"react-responsive": "^9.0.0-beta.10",
"react-router-dom": "^6.3.0",
"react-slick": "^0.29.0",
"react-topbar-progress-indicator": "^4.1.1",
"redux": "^4.1.1",
"redux-devtools-extension": "^2.13.9",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"slick-carousel": "^1.8.1",
"styled-components": "^5.3.3",
"swr": "^1.0.1",
"yup": "^0.32.11",
"yup-phone": "^1.3.2"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.1.0",
"@types/lodash": "^4.14.176",
"@types/node": "^17.0.21",
"@types/numeral": "^2.0.2",
"@types/qs": "6.9.7",
"@types/react-addons-update": "^0.14.21",
"@types/redux-persist": "^4.3.1",
"@types/speakingurl": "^13.0.3",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"airbnb": "^0.0.2",
"babel-plugin-styled-components": "^2.0.6",
"env-cmd": "^10.1.0",
"eslint": "^8.11.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"prettier": "2.5.1",
"pretty-quick": "^3.1.3",
"sass": "~1.32.12",
"speakingurl": "^14.0.1",
"typescript": "4.4.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"lint-staged": {
"**/*.{tsx,ts}": [
"prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"eslint --cache"
],
"styled.ts": [
"stylelint --cache"
]
}
}