generated from hackforla/.github-hackforla-base-repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
undo deletion of package.json and yarn.lock
- Loading branch information
1 parent
f79ce1c
commit 79c59f0
Showing
2 changed files
with
3,131 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |
Oops, something went wrong.