-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 981 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 981 Bytes
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
{
"name": "coderdojodelft.github.io",
"homepage": "https://coderdojodelft.github.io/",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"octicons": "^8.5.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.0",
"react-tabs": "^6.0.2"
},
"scripts": {
"dev": "vite --host",
"start": "vite --host",
"build": "vite build",
"preview": "vite preview",
"predeploy": "npm run build && cp CNAME ./dist",
"deploy": "gh-pages -d dist -b master"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@types/react": "^19.2.7",
"@vitejs/plugin-react": "^4.3.4",
"gh-pages": "^6.2.0",
"vite": "^6.0.3"
}
}