-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.78 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
{
"name": "drinking-game-app-server",
"version": "1.0.0",
"description": "The server which handles authentication, session creation & management for the drinking game application. Written in Node.js, Express.js & TypeScript",
"main": "dist/src/index.js",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"start": "node .",
"dev": "nodemon --watch src -e ts,ejs --exec npm run start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/drinking-game-app/node-server.git"
},
"keywords": [
"Express.js",
"Node.js",
"TypeScript",
"MongoDB"
],
"author": "Eoan O'Dea",
"license": "MIT",
"dependencies": {
"@rossmacd/gamesock-server": "0.4.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"connect-redis": "^4.0.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^5.3.3",
"google-auth-library": "^6.0.1",
"helmet": "^3.22.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.18",
"node-fetch": "^2.6.0",
"raygun": "^0.12.1",
"ts-loader": "^7.0.5",
"underscore": "^1.10.2"
},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/connect-redis": "0.0.14",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/express-jwt": "0.0.42",
"@types/helmet": "0.0.47",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.7.23",
"@types/node-fetch": "^2.5.7",
"@types/socket.io": "^2.1.8",
"@types/underscore": "^1.10.0",
"nodemon": "^2.0.4",
"tslint": "^6.1.2",
"typescript": "^3.9.5"
}
}