-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.79 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.79 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
61
62
63
64
65
{
"name": "investcount",
"private": false,
"version": "1.5.0",
"type": "module",
"scripts": {
"dev": "vite",
"test": "jest",
"build": "tsc -b && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"format": "prettier --write 'src/**/*.{ts,tsx,css}' --config ./.prettierrc.json",
"lint:fix": "eslint --fix 'src/**/*.{ts,tsx}'",
"prepare": "husky && husky install",
"lint-staged": "lint-staged"
},
"lint-staged": {
"src/**/*.{ts,tsx,css}": [
"npm run format"
],
"src/**/*.{ts,tsx}": [
"npm run lint"
]
},
"pre-commit": "lint-staged",
"dependencies": {
"@mdx-js/react": "^3.1.1",
"@mdx-js/rollup": "^3.1.1",
"@tailwindcss/typography": "^0.5.19",
"gray-matter": "^4.0.3",
"motion": "^12.6.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"reading-time": "^1.5.0",
"recharts": "^2.15.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.3.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-react-swc": "^3.8.1",
"autoprefixer": "^10.4.19",
"daisyui": "^4.1.12",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.9",
"postcss": "^8.4.40",
"prettier": "3.3.3",
"tailwindcss": "^3.4.7",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.2.2",
"vite": "^6.2.2"
}
}