-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.14 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.14 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
{
"name": "theta_project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "npx playwright install",
"install:all": "cd frontend && npm install && cd ../backend && npm install",
"build": "cd frontend && npm install && npm run build && cd ../backend && npm install",
"start:frontend": "cd frontend && npm start",
"start:backend": "cd backend && npm start",
"start": "concurrently \"npm run start:frontend\" \"npm run start:backend\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/YW-2022/theta_project.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/YW-2022/theta_project/issues"
},
"homepage": "https://github.com/YW-2022/theta_project#readme",
"devDependencies": {
"@playwright/test": "^1.48.2",
"@types/node": "^22.8.6",
"concurrently": "^9.1.0",
"express": "^4.21.1"
},
"dependencies": {
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"express": "^4.21.1",
"mssql": "^11.0.1",
"react-router-dom": "^6.27.0",
"react-scripts": "^5.0.1"
}
}