-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 811 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 811 Bytes
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
{
"name": "football-online-project",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/eliotjang/football-online-project.git",
"author": "Eliot Jang <eliotjang2@gmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"client": "parcel ./assets/html/signin.html --port 5501",
"server": "nodemon src/app.js",
"dev": "concurrently \"yarn run server\" \"yarn run client\""
},
"dependencies": {
"@prisma/client": "^5.14.0",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.19.2",
"joi": "^17.13.1",
"jsonwebtoken": "^9.0.2",
"prisma": "^5.14.0"
},
"devDependencies": {
"concurrently": "^8.2.2",
"dotenv": "^16.4.5",
"nodemon": "^3.1.2",
"parcel-bundler": "^1.12.5"
}
}