-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 792 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 792 Bytes
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
{
"name": "@hackathon/server",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "tsnd --ignore node_modules --transpile-only --no-notify --respawn src/index.ts",
"test": "jest ./src/server.spec.ts"
},
"dependencies": {
"@types/hashids": "^1.0.32",
"@types/mongoose": "^5.7.36",
"@types/qrcode": "^1.3.5",
"@types/socket.io": "^2.1.11",
"cors": "^2.8.5",
"express": "^4.17.1",
"hashids": "^2.2.1",
"mongoose": "^5.10.9",
"pdf-creator-node": "^1.4.1",
"qrcode": "^1.4.4",
"socket.io": "^2.3.0"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"jest": "^26.5.3",
"typescript": "^4.0.3",
"@types/express": "^4.17.7",
"ts-node-dev": "^1.0.0",
"ts-jest": "^26.4.1"
}
}