-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1001 Bytes
/
package.json
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
{
"name": "issues-tracker",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite",
"start:dev": "node --watch local-server.js & vite",
"start:prod": "vite --config vite.config.prod.ts",
"build": "tsc && vite build",
"build:prod": "tsc && vite build --config vite.config.prod.ts",
"preview": "vite preview",
"server": "node --watch local-server.js"
},
"dependencies": {
"antd": "^5.3.2",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"node-fetch": "^3.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-infinite-scroll-component": "^6.1.0",
"react-router-dom": "^6.9.0",
"sass": "^1.60.0",
"vite-plugin-style-tsconfig-paths": "^1.0.1",
"vite-tsconfig-paths": "^4.0.7"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"prettier": "^2.8.7",
"typescript": "^4.9.3",
"vite": "^4.2.0"
}
}