-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.6 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.6 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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "ticketing_system",
"version": "1.0.0",
"description": "50.003 Project by Yi Jie, Chloe and Bryan on ticketing system problem statement by Accenture 1st Meeting (29/01) Todo: 1. CRUD function with database 2. Email Accenture partners 3. Research on read-time chat functions, email notification",
"main": "server.js",
"scripts": {
"client-install": "npm install --prefix client",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"start": "node server.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Phangster/TicketingSystem.git"
},
"author": "Yi Jie, Chloe and Bryan",
"license": "ISC",
"bugs": {
"url": "https://github.com/Phangster/TicketingSystem/issues"
},
"homepage": "https://github.com/Phangster/TicketingSystem#readme",
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^6.0.2",
"nodemon": "^1.18.10",
"prettier": "^1.16.4",
"sinon": "^7.3.1",
"supertest": "^4.0.2"
},
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-handlebars": "^3.0.2",
"generate-password": "^1.4.1",
"install": "^0.12.2",
"jsonwebtoken": "^8.4.0",
"jwt-decode": "^2.2.0",
"mongoose": "^5.4.12",
"npm": "^6.8.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"timesolver": "^1.2.0",
"validator": "^10.11.0"
}
}