-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.51 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
52
{
"private": true,
"name": "mst-bl-pdf-generator",
"author": "Pavlo Kniazevych",
"description": "PDF generator for bl.is",
"license": "UNLICENSED",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Knyazevich/bl-pdf-generator"
},
"scripts": {
"build-ts": "tsc",
"watch-ts": "tsc -w",
"serve": "npm run remove-dist && npm run eslint:fix && npm run build-ts && npm run copy-static-assets && node dist/index.js",
"eslint": "eslint ./lib/**/*.ts",
"eslint:fix": "eslint ./lib/**/*.ts --fix",
"copy-static-assets": "ts-node copyStaticAssets.ts",
"remove-dist": "ts-node removeDist.ts"
},
"version": "1.0.0",
"dependencies": {
"@hapi/hapi": "^19.2.0",
"@hapi/inert": "^6.0.1",
"@types/handlebars": "^4.1.0",
"@types/hapi__hapi": "^19.0.4",
"@types/hapi__inert": "^5.2.0",
"@types/node": "^14.0.27",
"@types/puppeteer": "^3.0.1",
"@types/qrcode": "^1.3.5",
"@types/redis": "^2.8.25",
"dotenv": "^8.2.0",
"eslint": "^7.6.0",
"fs-extra": "^9.0.1",
"handlebars": "^4.7.6",
"hapi-cors": "^1.0.3",
"hapi-pulse": "^3.0.0",
"puppeteer": "^5.2.1",
"qrcode": "^1.4.4",
"redis": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"devDependencies": {
"@types/shelljs": "^0.8.8",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-plugin-import": "^2.22.0",
"nodemon": "^2.0.4",
"shelljs": "^0.8.4"
}
}