-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "hit-the-buzz-jack",
"version": "1.0.0",
"description": "A websocket buzzer app for running your own quizzes or other games",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"run": "node build/index.js",
"start": "cross-env NODE_ENV=local nodemon",
"check": "tsc --noemit",
"lint": "tslint -p ./",
"lint:fix": "tslint -p ./ --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/node": "^13.7.1",
"@types/pino": "^5.17.0",
"@types/socket.io": "^2.1.4",
"cross-env": "^7.0.2",
"nodemon": "^2.0.2",
"prettier": "^2.0.4",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.1.0"
},
"dependencies": {
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"ejs": "^3.0.2",
"fastify": "^2.13.1",
"fastify-static": "^2.6.0",
"node-uuid": "^1.4.8",
"pino-prettifier": "^1.0.8",
"pino-pretty": "^3.6.1",
"point-of-view": "^3.8.0",
"socket.io": "^2.3.0",
"typescript": "^3.8.3"
}
}