-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
126 lines (126 loc) · 3.88 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
{
"name": "minarets_website",
"description": "A community website for Dave Matthews Band fans to interact and listen to fan taped show archives.",
"version": "0.1.0",
"private": true,
"author": "Jim Geurts",
"license": "MIT",
"bugs": {
"url": "https://github.com/minarets/website/issues"
},
"browserslist": [
"last 2 major versions and supports es6-module-dynamic-import and not < 0.5% and not dead",
"last 2 firefox version",
"last 2 chrome version",
"last 2 edge version",
"ios_saf >= 13.4",
"safari >= 13.1"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"check:spelling": "cspell --config=.cspell.json \"**/*.{md,ts,js}\"",
"format": "prettier --write \"**/*.{md,css,scss,yml}\"",
"lint:ts": "tsc --noEmit && eslint --fix --ext .ts,.tsx components contexts hooks minarets-api pages",
"lint:markdown": "prettier --write '*.md' && markdownlint '*.md' --config=.github/linters/.markdown-lint.yml --fix",
"lint": "yarn lint:ts && yarn lint:markdown && yarn format",
"lint-staged": "lint-staged",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"lint-staged": {
"*.yml": [
"prettier --write"
],
"*.md": [
"prettier --write",
"markdownlint --config=.github/linters/.markdown-lint.yml --fix",
"cspell --config=.cspell.json"
],
"*.css": [
"prettier --write"
],
"*.scss": [
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@popperjs/core": "^2.11.6",
"@sentry/browser": "7.17.4",
"@sentry/integrations": "7.17.4",
"@sentry/node": "7.17.4",
"@sentry/tracing": "7.17.4",
"@sentry/webpack-plugin": "1.20.0",
"algoliasearch": "4.14.2",
"axios": "1.2.0-alpha.1",
"axios-retry": "3.3.1",
"bootstrap": "5.2.2",
"domutils": "3.0.1",
"howler": "^2.2.3",
"htmlparser2": "8.0.1",
"ioredis": "^5.2.4",
"lru-cache": "7.14.1",
"moment": "^2.29.4",
"next": "12.3.2",
"next-auth": "4.15.1",
"react": "18.2.0",
"react-autosuggest": "10.1.0",
"react-content-loader": "^6.2.0",
"react-dom": "18.2.0",
"react-hotkeys-hook": "4.0.2",
"react-instantsearch-dom": "6.38.0",
"react-popper": "2.3.0",
"react-query": "^3.39.2",
"react-slider": "2.0.4",
"sass": "1.56.0",
"smartystreets-javascript-sdk": "1.13.7",
"uuid": "9.0.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.3.2",
"@types/howler": "^2.2.7",
"@types/ioredis": "^4.28.10",
"@types/lru-cache": "^7.10.9",
"@types/next-auth": "^3.15.0",
"@types/react": "^18.0.25",
"@types/react-autosuggest": "^10.1.5",
"@types/react-dom": "^18.0.8",
"@types/react-instantsearch-core": "^6.26.2",
"@types/react-instantsearch-dom": "^6.12.3",
"@types/react-slider": "^1.3.1",
"@types/smartystreets-javascript-sdk": "^1.6.6",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"@vercel/node": "^2.6.1",
"cspell": "^6.14.0",
"eslint": "^8.26.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.6.2",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-unicorn": "^44.0.2",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"markdownlint-cli": "^0.32.2",
"nodemailer": "6.8.0",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"overrides": {
"@types/react": "^18.0.25"
}
}