-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.38 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
{
"name": "SEOKO-client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:analyze": "ANALYZE=true next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"compile:types": "tsc --noEmit"
},
"dependencies": {
"@tanstack/react-query": "^4.29.19",
"@uiw/react-md-editor": "^3.23.5",
"axios": "^1.4.0",
"markdown-to-jsx": "^7.3.2",
"next": "13.4.19",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-syntax-highlighter": "^15.5.0",
"remove-markdown": "^0.5.0",
"sharp": "^0.32.5"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.5.3",
"@storybook/addon-essentials": "^7.1.0-alpha.41",
"@storybook/addon-interactions": "^7.1.0-alpha.41",
"@storybook/addon-links": "^7.1.0-alpha.41",
"@storybook/addon-onboarding": "^1.0.3",
"@storybook/blocks": "^7.1.0-alpha.41",
"@storybook/nextjs": "^7.1.0-alpha.41",
"@storybook/react": "^7.1.0-alpha.41",
"@storybook/testing-library": "^0.2.0",
"@tanstack/react-query-devtools": "^4.29.19",
"@testing-library/jest-dom": "^6.0.1",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.3",
"@types/node": "20.5.0",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"@types/react-syntax-highlighter": "^15.5.7",
"@types/remove-markdown": "^0.3.1",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"autoprefixer": "10.4.15",
"eslint": "^8.41.0",
"eslint-config-next": "^13.4.13",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-storybook": "^0.6.13",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"postcss": "8.4.27",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.4.0",
"storybook": "^7.1.0-alpha.41",
"tailwindcss": "3.3.3",
"typescript": "^5.0.4"
},
"packageManager": "[email protected]"
}