-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.51 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.51 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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"homepage": "https://samjawale.github.io",
"type": "module",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"prettier": "prettier --write '+(src|public)/**/*.+(js|jsx|ts|tsx|json|css|md|html)'",
"prettier:check": "prettier --check '+(src|public)/**/*.+(js|jsx|ts|tsx|json|css|md|html)'",
"predeploy": "yarn build",
"deploy": "gh-pages -d build"
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"antd": "^5.9.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.11",
"react-pdf": "^7.5.0",
"react-router-dom": "^6.16.0",
"react-wordcloud": "^1.2.7",
"styled-components": "^6.0.8"
},
"devDependencies": {
"@types/node": "^20.8.2",
"@types/react": "^18.2.25",
"@types/react-dom": "^18.2.10",
"@types/styled-components": "^5.1.28",
"@vitejs/plugin-react": "^4.1.0",
"gh-pages": "^6.0.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-svgr": "^4.1.0",
"vite-tsconfig-paths": "^4.2.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}