forked from razrabs-media/journal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.86 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
{
"name": "raz.media.web",
"version": "2.0.0",
"private": true,
"scripts": {
"update-schema": "DOTENV_CONFIG_PATH='./.env.development' graphql-codegen -c ./codegen.download.yml --require dotenv/config && graphql-codegen",
"codegen": "graphql-codegen",
"prebuild": "yarn codegen",
"build": "next build",
"start": "next start",
"start:dev": "concurrently -k \"yarn:codegen --watch\" \"next dev\"",
"lint": "next lint --ext .ts,.tsx .",
"pre-commit": "yarn lint-staged",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn lint"
]
},
"dependencies": {
"@apollo/client": "3.8.4",
"@emotion/react": "11.11.0",
"@emotion/styled": "11.11.0",
"@mui/system": "5.14.10",
"body-scroll-lock": "4.0.0-beta.0",
"cookies-next": "4.0.0",
"date-fns": "2.30.0",
"date-fns-tz": "2.0.0",
"emoji-regex": "10.2.1",
"gemoji": "8.1.0",
"graphql": "16.8.1",
"linkify-react": "4.1.1",
"linkifyjs": "4.1.1",
"mdast": "3.0.0",
"mdast-util-find-and-replace": "3.0.1",
"next": "13.5.3",
"next-sitemap": "4.2.3",
"next-ym": "2.3.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "8.0.7",
"react-player": "2.13.0",
"react-responsive": "9.0.2",
"react-syntax-highlighter": "15.5.0",
"remark-gemoji": "8.0.0",
"remark-gfm": "3.0.1",
"ua-parser-js": "1.0.36"
},
"devDependencies": {
"@emotion/eslint-plugin": "11.11.0",
"@feature-sliced/eslint-config": "^0.1.0-beta.6",
"@graphql-codegen/add": "^5.0.0",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/client-preset": "^4.1.0",
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
"@graphql-codegen/schema-ast": "^4.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-react-apollo": "^4.0.0",
"@next/eslint-plugin-next": "13.5.3",
"@parcel/watcher": "^2.3.0",
"@svgr/webpack": "^8.1.0",
"@swc/plugin-emotion": "^2.5.87",
"@types/body-scroll-lock": "3.1.0",
"@types/mdast": "4.0.0",
"@types/node": "20.7.0",
"@types/react": "18.2.22",
"@types/react-dom": "18.2.7",
"@types/react-syntax-highlighter": "15.5.7",
"@types/ua-parser-js": "0.7.37",
"@typescript-eslint/eslint-plugin": "6.7.3",
"@typescript-eslint/parser": "6.7.3",
"concurrently": "^8.2.1",
"dotenv": "^16.3.1",
"eslint": "^8.50.0",
"eslint-config-next": "^13.5.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-boundaries": "^3.4.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.1",
"graphql-tag": "^2.12.6",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"engines": {
"node": "18.18.0"
},
"packageManager": "yarn@3.6.4"
}