Skip to content

Commit

Permalink
undo deletion of package.json and yarn.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
vorleakyek committed Oct 30, 2024
1 parent f79ce1c commit 79c59f0
Show file tree
Hide file tree
Showing 2 changed files with 3,131 additions and 0 deletions.
31 changes: 31 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"name": "vrms-server",
"version": "0.3.0",
"description": "VRMS Server",
"scripts": {
"start": "concurrently \"cd backend && npm run start\" \"cd client && npm run start\"",
"mvp": "concurrently \"cd backend && npm run start\" \"cd client-mvp-04 && npm run start\"",
"dev:api": "cd backend && npm run dev",
"dev:client": "cd client && npm run start",
"dev": "dotenv -e backend/.env -e client/.env concurrently \"npm run dev:api\" \"npm run dev:client\"",
"cy:open": "dotenv -e client/.env -- cross-var cross-env CYPRESS_baseUrl=%CLIENT_URL% cypress open",
"cy:run": "dotenv -e client/.env -- cross-var cross-env CYPRESS_baseUrl=%CLIENT_URL% cypress run --headed",
"test:cy": "dotenv -e ./backend/.env -e ./client/.env cross-var start-test dev:api %BACKEND_PORT% dev:client %CLIENT_PORT% cy:run",
"test:backend": "cd backend && npm run test",
"test:client": "cd client && npm run test",
"test:client-mvp": "cd client-mvp-04 && npm run test",
"test:all": "cross-env NODE_ENV=test npm run test:client && npm run test:client-mvp && npm run test:backend && npm run test:cy"
},
"dependencies": {
"@mui/icons-material": "^5.14.19",
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"cross-var": "^1.1.0",
"dotenv-cli": "^3.2.0",
"vite": "^5.4.8"
},
"devDependencies": {
"cypress": "^5.0.0",
"start-server-and-test": "^1.11.3"
}
}
Loading

0 comments on commit 79c59f0

Please sign in to comment.