-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.12 KB
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
{
"name": "profile",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --cache",
"format": "prettier --write .",
"format:check": "prettier --check .",
"directives:check": "node scripts/check-directives.js",
"test": "vitest run",
"bundle:check": "node scripts/check-bundle-size.js",
"check": "node scripts/check.js"
},
"dependencies": {
"embla-carousel-react": "^8.6.0",
"highlight.js": "^11.11.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-directive": "^4.0.0",
"remark-gfm": "^4.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@vitejs/plugin-react": "^6.0.3",
"eslint": "^9.39.4",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-react": "^7.37.5",
"globals": "^15.15.0",
"jsdom": "^29.1.1",
"prettier": "^3.9.1",
"vite": "^8.1.4",
"vitest": "^4.1.10"
}
}