Files
actions-playground/package.json
tom.coursow 14d6d17207
Gitea Actions Demo / Test-Job (push) Successful in 8s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 20s
added example react js app to play with gitea actions
2023-07-12 00:12:24 +02:00

28 lines
626 B
JSON

{
"name": "02-basic-example",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.0.1",
"jsdom": "^20.0.0",
"vite": "^3.0.7",
"vitest": "^0.22.1"
}
}