-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.8 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.8 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "folios-portfolio",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"build": "vite build",
"check": "npm run lint && npm run format:check",
"check:md-links": "markdown-link-check -c .mlc.config.json -i node_modules .",
"dev": "vite --host",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix --format=stylish",
"preview": "vite preview --host",
"spell": "cspell lint . --no-progress --color --show-suggestions",
"test": "vitest run --passWithNoTests",
"test:coverage": "vitest run --passWithNoTests --coverage",
"test:watch": "vitest",
"verify": "npm run check && npm run test && npm run spell"
},
"dependencies": {
"loglevel": "^1.9.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/react": "^19.1.1",
"@types/react-dom": "^19.1.2",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.1.1",
"autoprefixer": "^10.4.21",
"cspell": "^8.18.1",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-jsdoc": "^50.6.9",
"eslint-plugin-perfectionist": "^4.11.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-tailwindcss": "^3.18.0",
"globals": "^16.0.0",
"jsdom": "^26.0.0",
"markdown-link-check": "^3.13.7",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"tailwindcss": "^3.4.17",
"vite": "^6.2.6",
"vitest": "^3.1.1"
}
}