-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.8 KB
/
package.json
File metadata and controls
60 lines (60 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
58
59
60
{
"name": "the-human-pattern-lab",
"version": "1.0.0",
"type": "module",
"private": true,
"description": "Main site for The Human Pattern Lab",
"dependencies": {
"dotenv": "^17.2.3",
"i18next": "^25.7.2",
"i18next-browser-languagedetector": "^8.2.0",
"lucide-react": "^0.562.0",
"node-fetch": "^3.3.2",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-error-boundary": "^6.0.0",
"react-i18next": "^16.4.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.10.1",
"remark-gfm": "^4.0.1",
"swagger-ui-react": "^5.31.0",
"vite-plugin-markdown": "^2.2.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/swagger-ui-react": "^5.18.0",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-v8": "^4.0.15",
"autoprefixer": "^10.4.23",
"happy-dom": "^20.0.11",
"husky": "^9.1.7",
"postcss": "^8.5.6",
"prettier": "3.7.4",
"stylelint": "^16.26.1",
"stylelint-config-standard": "^39.0.1",
"stylelint-config-tailwindcss": "^1.0.0",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"vite": "^7.2.7",
"vitest": "^4.0.15"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"sync:labnotes": "tsx src/scripts/syncLabNotesFromMd.ts",
"test": "vitest",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"fetch:youtube": "node scripts/fetchYoutube.js",
"add:headers": "node scripts/addHeaders2.mjs",
"lint:css": "stylelint \"src/**/*.{css,pcss}\"",
"prepare": "husky"
}
}