-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
100 lines (100 loc) · 3.05 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
{
"name": "miriya",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"prepare": "husky install",
"start": "next start",
"test": "jest",
"pm2:start": "pm2 start ecosystem.config.js",
"pm2:stop": "pm2 stop ecosystem.config.js",
"pm2:destroy": "pm2 flush && yarn pm2:stop",
"pm2:deploy": "next build && yarn pm2:start"
},
"dependencies": {
"@hookform/resolvers": "^3.0.0",
"@meilisearch/instant-meilisearch": "^0.13.1",
"@next/bundle-analyzer": "^13.2.4",
"@sentry/nextjs": "^7.50.0",
"@tanstack/react-query": "^5.0.0-alpha.71",
"@tanstack/react-query-devtools": "^4.29.7",
"@uiw/react-md-editor": "^3.20.10",
"axios": "^1.3.5",
"cheerio": "^1.0.0-rc.12",
"client-only": "^0.0.1",
"clsx": "^1.2.1",
"dayjs": "^1.11.7",
"easymde": "^2.18.0",
"encoding": "^0.1.13",
"firebase": "^9.19.0",
"gray-matter": "^4.0.3",
"humps": "^2.0.1",
"iconv-lite": "^0.6.3",
"isotope-layout": "^3.0.6",
"jotai": "^2.0.3",
"lodash": "^4.17.21",
"next": "^13.4.10-canary.0",
"next-superjson-plugin": "^0.5.6",
"octokit": "^2.0.18",
"react": "^18.2.0",
"react-clipboard.js": "^2.0.16",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"react-hotkeys-hook": "^4.4.0",
"react-instantsearch-core": "^6.40.0",
"react-instantsearch-dom": "^6.40.0",
"react-simplemde-editor": "^5.2.0",
"react-transition-group": "^4.4.5",
"react-use": "^17.4.0",
"rehype-highlight": "^6.0.0",
"rehype-raw": "^6.1.1",
"rehype-stringify": "^9.0.3",
"remark": "^14.0.2",
"remark-gfm": "^3.0.1",
"remark-html": "^15.0.2",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"server-only": "^0.0.1",
"superjson": "^1.12.2",
"unified": "^10.1.2",
"yup": "^1.0.2"
},
"devDependencies": {
"@svgr/webpack": "^6.5.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/gtag.js": "^0.0.12",
"@types/humps": "^2.0.2",
"@types/isotope-layout": "^3.0.9",
"@types/lodash": "^4.14.191",
"@types/node": "18.14.6",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/react-instantsearch-core": "^6.26.3",
"@types/react-instantsearch-dom": "^6.12.3",
"@types/react-transition-group": "^4.4.5",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"critters": "^0.0.16",
"cross-fetch": "^3.1.6",
"eslint": "8.35.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^13.4.7",
"eslint-config-prettier": "^8.7.0",
"husky": "^8.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"next-router-mock": "^0.9.3",
"pm2": "^5.3.0",
"prettier": "^2.8.4",
"sass": "^1.63.4",
"stylelint": "^15.8.0",
"stylelint-config-recess-order": "^4.0.0",
"stylelint-config-standard-scss": "^7.0.1",
"stylelint-declaration-strict-value": "^1.9.2",
"typescript": "^5.1.3"
}
}