generated from hackforla/.github-hackforla-base-repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.7 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.7 KB
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
39
40
41
{
"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\"",
"format": "prettier --write \"client/**/*.{js,jsx,css}\" \"backend/**/*.{js,jsx,css}\"",
"lint": "eslint",
"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:all": "cross-env NODE_ENV=test npm run test:client && npm run test:backend",
"prepare": "husky install",
"lint:files": "node scripts/list-lint-files.mjs"
},
"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",
"styled-components": "^6.1.13"
},
"devDependencies": {
"autoprefixer": "^10.4.21",
"cypress": "^5.0.0",
"eslint": "9.9.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react": "^7.37.3",
"globals": "15.9.0",
"husky": "^9.1.7",
"prettier": "3.4.2",
"start-server-and-test": "^1.11.3"
}
}