-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.92 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "cs554-yams",
"version": "1.0.0",
"description": "YAMS: Yet Another Messaging Service",
"main": "index.js",
"scripts": {
"dev": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,yellow.bold\" \"npm run ts:watch\" \"npm run node:dev\"",
"node:dev": "nodemon dist/",
"node:dist": "node dist/",
"ts:build": "tsc",
"ts:watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gluaxspeed/cs554-yams.git"
},
"keywords": [
"proton-native",
"react",
"redux",
"typescript",
"sockets",
"aws-s3"
],
"author": "Rob Herley, Jonathan Pavlik, Albert Tang, Aimal Wajihuddin",
"license": "ISC",
"bugs": {
"url": "https://github.com/gluaxspeed/cs554-yams/issues"
},
"homepage": "https://github.com/gluaxspeed/cs554-yams#readme",
"devDependencies": {
"@types/bcrypt": "^1.0.0",
"@types/compression": "0.0.36",
"@types/cors": "^2.8.3",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.11.1",
"@types/jsonwebtoken": "^7.2.7",
"@types/mongoose": "^5.0.9",
"@types/morgan": "^1.7.35",
"@types/node": "^9.6.2",
"@types/passport-jwt": "^3.0.1",
"@types/socket.io": "^1.4.33",
"@types/socket.io-redis": "^1.0.25",
"@types/uuid": "^3.4.3",
"concurrently": "^3.5.1",
"typescript": "^2.8.1"
},
"dependencies": {
"@types/multer": "^1.3.6",
"aws-sdk": "^2.238.1",
"bcrypt": "^2.0.0",
"compression": "^1.7.2",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-validator": "^5.1.1",
"jsonwebtoken": "^8.2.1",
"mongoose": "^5.0.13",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"socket.io": "^2.1.0",
"socket.io-redis": "^5.2.0",
"uuid": "^3.2.1"
}
}