-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.8 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
{
"private": true,
"license": "GPL-3.0",
"scripts": {
"build": "next build",
"dev": "next dev",
"fix": "npm-run-all --continue-on-error \"fix:*\"",
"fix:eslint": "eslint --fix \"**/*\"",
"fix:markdownlint": "markdownlint --fix \"**/*\"",
"fix:prettier": "prettier --write \"**/*\"",
"fix:yarn-dedupe": "yarn dedupe",
"lint": "npm-run-all --continue-on-error \"lint:*\"",
"lint:eslint": "eslint --report-unused-disable-directives \"**/*\"",
"lint:markdownlint": "markdownlint \"**/*\"",
"lint:prettier": "prettier --check \"**/*\"",
"lint:tsc": "tsc --project .",
"lint:yarn-dedupe": "yarn dedupe --check",
"start": "next start",
"postinstall": "husky install",
"prisma": "node -r dotenv-flow/config ./node_modules/.bin/prisma"
},
"lint-staged": {
"**/*": [
"suppress-exit-code eslint --fix",
"suppress-exit-code markdownlint --fix",
"suppress-exit-code prettier --write"
]
},
"dependencies": {
"@auth0/nextjs-auth0": "^1.7.0",
"@fortawesome/fontawesome-svg-core": "^1.3.0",
"@fortawesome/free-brands-svg-icons": "^6.0.0",
"@fortawesome/free-solid-svg-icons": "^6.0.0",
"@fortawesome/react-fontawesome": "^0.1.17",
"@prisma/client": "^3.9.2",
"@sentry/nextjs": "^6.17.9",
"date-fns": "^2.28.0",
"dayjs": "^1.10.7",
"gravatar-url": "^4.0.1",
"lru-cache": "^7.4.0",
"mobx": "^6.4.0",
"mobx-devtools-mst": "^0.9.30",
"mobx-react": "^7.3.0",
"mobx-state-tree": "^5.1.3",
"next": "^12.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-linkify": "^1.0.0-alpha",
"react-redux": "^7.2.6",
"react-tooltip": "^4.2.21",
"rooks": "^5.10.0",
"sass": "^1.49.8",
"scss": "^0.2.4",
"sentry": "^0.1.2",
"sleep-promise": "^9.1.0",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@kachkaev/eslint-config-react": "^0.4.5",
"@kachkaev/markdownlint-config": "^0.3.0",
"@netlify/plugin-nextjs": "^4.2.7",
"@next/eslint-plugin-next": "^12.1.0",
"@types/lru-cache": "^5.1.1",
"@types/node": "^17.0.18",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/react-linkify": "^1.0.1",
"@types/styled-components": "^5.1.23",
"@types/yandex-maps": "^2.1.20",
"dotenv-flow": "^3.2.0",
"eslint": "^8.9.0",
"execa": "^6.1.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"markdownlint-cli": "^0.31.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"prettier-plugin-packagejson": "^2.2.15",
"prettier-plugin-prisma": "^3.9.0",
"prettier-plugin-sh": "^0.8.1",
"prisma": "^3.9.2",
"suppress-exit-code": "^1.0.0",
"typescript": "^4.5.5"
},
"engines": {
"node": "^14.13.1 || >=16.0.0",
"yarn": "^1.22.0"
},
"packageManager": "yarn@3.1.1"
}