-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·37 lines (37 loc) · 1.36 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
{
"name": "demo-api",
"version": "1.0.0",
"main": "index.js",
"license": "UNLICENSED",
"private": true,
"scripts": {
"debug": "./node_modules/.bin/nodemon --watch . --exec node --inspect --require ts-node/register index.ts",
"pm2-start": "pm2 start index.ts",
"pm2-stop": "pm2 stop index",
"pm2-restart": "pm2 start index",
"pm2-log": "pm2 log",
"postinstall": "$(yarn bin)/pm2 install typescript && yarn install-debian",
"install-debian": "sudo apt install libasound2 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 libnss3"
},
"dependencies": {
"@types/express": "^4.16.0",
"@types/node": "^10.3.3",
"@types/puppeteer": "^1.12.4",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.3",
"express": "^4.16.2",
"fs-extra": "^8.0.1",
"html-pdf": "^2.2.0",
"mailgun-js": "^0.22.0",
"morgan": "^1.9.0",
"nodemon": "^1.17.1",
"pm2": "^3.5.1",
"puppeteer": "^1.17.0",
"rxjs": "^6.5.2",
"ssl-root-cas": "^1.3.1",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.8.0",
"typescript": "~3.1.6"
}
}