-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.06 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
{
"name": "markdown-editor",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.5.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test:watch": "vitest",
"test": "vitest run",
"coverage": "vitest run --coverage",
"coverage:ui": "vitest --coverage --ui",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext js,jsx,ts,tsx --max-warnings 0",
"preview": "vite preview",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"dependencies": {
"@supabase/supabase-js": "^2.42.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.0.4",
"react-remark": "^2.1.0"
},
"devDependencies": {
"@reduxjs/toolkit": "^2.0.1",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.11",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/coverage-v8": "^1.1.3",
"@vitest/ui": "^1.1.3",
"autoprefixer": "^10.4.19",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"husky": "^8.0.3",
"jsdom": "^23.2.0",
"lint-staged": "^15.2.0",
"postcss": "^8.4.33",
"prettier": "3.1.1",
"sass": "^1.69.7",
"supabase": "^1.164.1",
"tailwindcss": "^3.4.1",
"tsc-files": "^1.1.4",
"typescript": "^5.3.3",
"vite": "^5.2.10",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.2.3",
"vitest": "^1.2.1"
}
}