-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.39 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
{
"name": "dharnbot-server",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "concurrently -p name -c \"yellow,magenta\" -n \"tsc,nodemon\" \"npm run watch\" \"npm run start\"",
"watch": "tsc -w",
"start": "nodemon dist/src/index.js",
"serve:prod": "node dist/src/index.js",
"test": "jest",
"type-check": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dane-harnett/dharnbot-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dane-harnett/dharnbot-server/issues"
},
"homepage": "https://github.com/dane-harnett/dharnbot-server#readme",
"devDependencies": {
"@types/express": "^4.17.7",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@types/socket.io": "^2.1.11",
"@types/tmi.js": "^1.8.2",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"concurrently": "^5.3.0",
"eslint": "^7.16.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^26.6.3",
"nodemon": "^2.0.4",
"prettier": "^2.8.3",
"ts-jest": "^26.5.4",
"typescript": "^4.1.3"
},
"dependencies": {
"@types/cors": "^2.8.7",
"axios": "^0.21.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"obs-websocket-js": "^4.0.1",
"socket.io": "^2.4.1",
"tmi.js": "^1.8.5"
}
}