-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
35 lines (35 loc) · 960 Bytes
/
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
{
"name": "discourse-facebook-hook",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development ts-node src/index.ts",
"build": "rimraf dist && tsc",
"start": "npm run build && pm2 start ./pm2.json",
"stop": "pm2 stop ./pm2.json && pm2 delete ./pm2.json",
"log": "pm2 logs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/body-parser": "^1.17.0",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.1",
"@types/puppeteer": "^1.12.1",
"@types/request-promise": "^4.1.42",
"body-parser": "^1.18.3",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"puppeteer": "^5.5.0",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"rimraf": "^2.6.3"
},
"devDependencies": {
"cross-env": "^5.2.0",
"ts-node": "^8.0.2",
"typescript": "^4.0.5"
}
}