-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.17 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
{
"name": "coding-quiz",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"start": "npm run client:build && npm run server",
"start:dev": "concurrently \"npm run server:dev\" \"wait-on tcp:3001 && npm run client:dev\"",
"server": "cd server && npm start",
"server:dev": "cd server && npm run dev",
"install": "cd server && npm i && cd ../client && npm i",
"client:build": "cd client && npm run build",
"client:dev": "cd client && npm run dev",
"build": "cd server && npm run build",
"seed": "cd server && npm run seed",
"test": "npm run cypress:component && npx cypress open",
"cypress:component": "npx cypress run --component",
"cypress:e2e": "npx cypress run --e2e",
"render-build": "npm install && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/react": "^18.3.3",
"@vitejs/plugin-react": "^4.3.1",
"concurrently": "^8.2.2",
"cypress": "^13.13.1",
"nodemon": "^3.1.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.25.1",
"typescript": "^5.5.3",
"vitest": "^2.0.3",
"wait-on": "^7.2.0"
}
}