-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.53 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.53 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
{
"name": "scrinity",
"author": "alina.lozyuk.1999@gmail.com",
"version": "0.1.0",
"scripts": {
"publish:image": "sh scripts/docker/build-and-publish.sh",
"dev": "next",
"build": "next build",
"start": "next start --port 27182",
"lint": "eslint --ext .tsx --ext .ts ./src/*/** --no-error-on-unmatched-pattern",
"lint:fix": "eslint --ext .tsx --ext .ts --fix ./src/*/** --no-error-on-unmatched-pattern",
"prepare": "husky install",
"type-check": "tsc --pretty"
},
"dependencies": {
"@emailjs/browser": "^3.4.0",
"@react-hook/window-scroll": "^1.3.0",
"@types/aws-sdk": "^2.7.0",
"@types/classnames": "^2.3.1",
"@types/config": "^0.0.39",
"@types/cookie": "^0.4.1",
"@types/qs": "^6.9.7",
"@types/react-dom": "^17.0.11",
"@types/react-infinite-scroll-component": "^5.0.0",
"@types/react-lazyload": "^3.1.1",
"@types/react-modal": "^3.13.1",
"axios": "^0.22.0",
"bootstrap": "5.1.3",
"classnames": "^2.3.1",
"config": "^3.3.1",
"cookie": "^0.4.1",
"date-fns": "^2.27.0",
"fork-ts-checker-webpack-plugin": "^6.3.4",
"javascript-time-ago": "^2.3.10",
"lint-staged": ">=10",
"mobile-device-detect": "^0.4.3",
"next": "^11.1.4",
"next-i18next": "^8.9.0",
"next-images": "^1.8.1",
"pm2": "^5.1.2",
"qs": "^6.10.1",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-bootstrap": "^2.0.2",
"react-countdown-hook": "^1.1.1",
"react-device-detect": "^2.0.1",
"react-dom": "^17.0.2",
"react-id-swiper": "3.0.0",
"react-image-file-resizer": "^0.4.7",
"react-infinite-scroll-component": "^6.1.0",
"react-lazyload": "^3.2.0",
"react-loading": "^2.0.3",
"react-modal": "^3.14.3",
"react-toastify": "^8.1.0",
"sass": "^1.42.1",
"scrinity-chat": "^1.0.5",
"swiper": "^5.3.7",
"swr": "^1.1.1"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^16.10.3",
"@types/react": "^17.0.27",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"audit-ci": "^3.1.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-google": "^0.14.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.0",
"typescript": "^4.0.2"
},
"lint-staged": {
"*.{tsx,ts}": "eslint --cache --fix"
}
}