-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.54 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.54 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "ranpin-portfolio",
"version": "1.0.0",
"type": "module",
"description": "Ranpin的个人学术项目分享网站",
"homepage": "https://ranpin.github.io/",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"lint": "eslint . --ext js,jsx,ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext js,jsx --fix",
"format": "prettier --write \"src/**/*.{js,jsx,json,css}\"",
"test:build": "npm run build && npm run preview",
"clean": "rm -rf dist node_modules/.cache",
"prepare": "husky install"
},
"keywords": [
"portfolio",
"academic",
"react",
"tailwindcss",
"personal-website"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"framer-motion": "^12.38.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.0",
"zustand": "^5.0.13"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.23.5",
"@eslint/js": "^9.39.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.6",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-define-config": "^2.1.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.0",
"jsdom": "^29.1.1",
"lint-staged": "^16.4.0",
"postcss": "^8.4.31",
"postcss-loader": "^7.3.3",
"prettier": "^3.8.3",
"serve": "^14.2.1",
"style-loader": "^3.3.3",
"tailwindcss": "^3.3.5",
"typescript": "^6.0.3",
"vite": "^8.0.12",
"vitest": "^4.1.6",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"repository": {
"type": "git",
"url": "https://github.com/ranpin/ranpin.github.io.git"
},
"bugs": {
"url": "https://github.com/ranpin/ranpin.github.io/issues"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
}
}