forked from WeiXuanYap/TraceTheGather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 820 Bytes
/
package.json
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": "extra-project",
"version": "1.0.0",
"description": "An app to book meetings and conduct contact tracing if necessary",
"main": "index.js",
"scripts": {
"start": "node index.js",
"build": "cd client && npm install && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZenoNexus/cs2102-project.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ZenoNexus/cs2102-project/issues"
},
"homepage": "https://github.com/ZenoNexus/cs2102-project#readme",
"dependencies": {
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"nodemon": "^2.0.15",
"pg": "^8.7.1",
"pg-promise": "^10.11.1"
}
}