-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.86 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.86 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
{
"name": "kylezehaoqin-portfolio",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": "https://kylezehaoqin.github.io",
"scripts": {
"dev": "pnpm run sass && vite",
"build": "rimraf dist && pnpm run sass && tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"predeploy": "pnpm run build",
"deploy": "gh-pages -d dist",
"sass": "rimraf src/styles/css && sass src/styles/scss:src/styles/css"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-navigation-menu": "^1.1.4",
"classnames": "^2.3.2",
"d3": "^7.8.4",
"pdfjs-dist": "^3.11.174",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-pdf": "^7.5.1",
"react-router": "^6.14.2",
"react-router-dom": "^6.15.0",
"react-spring": "^9.7.3",
"sass": "^1.63.2"
},
"devDependencies": {
"@types/d3": "^7.4.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"@vitejs/plugin-react-swc": "^3.3.0",
"eslint": "^8.39.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.5",
"gh-pages": "^5.0.0",
"rimraf": "^5.0.0",
"typescript": "^5.0.4",
"vite": "^4.5.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"pnpm": {
"overrides": {
"word-wrap@<1.2.4": ">=1.2.4",
"vite@>=4.3.0 <4.3.9": ">=4.3.9",
"semver@>=6.0.0 <6.3.1": ">=6.3.1",
"semver@>=7.0.0 <7.5.2": ">=7.5.2",
"postcss@<8.4.31": ">=8.4.31"
}
}
}