-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.45 KB
/
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
31
32
33
34
35
36
37
38
39
40
{
"name": "software-engineering-cs673",
"version": "1.0.0",
"description": "The goal of this project is to create a state of the art of project management tool, SwelloDesk. ",
"main": "index.js",
"scripts": {
"test": "mocha --timeout 500000 --exit",
"backend": "node server.js",
"frontend": "cd ./frontend && npm start",
"dev": "concurrently \"npm run backend\" \"npm run frontend\"",
"docs:backend": "documentation build backend/** -f html -o docs",
"docs:frontend": "documentation build frontend/** -f html -o docs",
"docs:build": "documentation build backend/** -f html -o docs && documentation build frontend/** -f html -o docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JonathanES/software-engineering-CS673.git"
},
"author": "Jonathan, James, Yuanping, Erhan, Chris, Clement, Saravana",
"license": "ISC",
"bugs": {
"url": "https://github.com/JonathanES/software-engineering-CS673/issues"
},
"homepage": "https://github.com/JonathanES/software-engineering-CS673#readme",
"dependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"concurrently": "^4.1.0",
"documentation": "^12.0.1",
"express": "^4.17.1",
"mocha": "^6.1.4",
"moment": "^2.24.0",
"moment-timezone": "^0.5.26",
"mysql": "^2.17.1",
"nodemailer": "^6.3.0",
"save": "^2.4.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0"
}
}