-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.2 KB
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": "sob",
"version": "1.0.0",
"description": "A slack bot that tracks tags from Stack Overflow.",
"main": "app.js",
"dependencies": {
"body-parser": "^1.18.3",
"cheerio": "^1.0.0-rc.2",
"express": "^4.16.3",
"request": "^2.87.0",
"socket.io": "^2.4.0",
"socket.io-client": "^2.1.1"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/cheerio": "^0.22.8",
"@types/express": "^4.16.0",
"@types/morgan": "^1.7.35",
"@types/node": "^10.5.1",
"@types/request": "^2.47.1",
"@types/socket.io": "^1.4.36",
"@types/socket.io-client": "^1.4.32",
"morgan": "^1.9.1",
"ts-node": "^7.0.0",
"typescript": "^2.9.2"
},
"scripts": {
"clean": "rm -rf ./dist",
"build": "./node_modules/.bin/tsc",
"dev": "npm run clean && npm run build && ts-node ./src/app.ts",
"start": "node ./dist/app.js",
"prod": "npm run clean && npm run build && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devhid/sob.git"
},
"author": "Mankirat Gulati",
"license": "MIT",
"bugs": {
"url": "https://github.com/devhid/sob/issues"
},
"homepage": "https://github.com/devhid/sob#readme"
}