-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
{
"name": "etiquetador-correios",
"version": "0.0.1",
"description": "Gerador de etiquetas para encomendas do correios",
"main": "src/index.ts",
"repository": "https://github.com/phruzic/etiquetador-correios",
"author": "phruzic",
"license": "GPL-3.0-or-later",
"private": false,
"scripts": {
"lint": "yarn eslint --fix \"./src/**.ts\" -c .eslintrc.json",
"clean": "rm -r build",
"build": "tsc",
"start": "node build/index.js",
"serve": "ts-node-dev src/index.ts"
},
"devDependencies": {
"@types/bwip-js": "^2.0.0",
"@types/node": "^14.14.7",
"@types/pdfkit": "^0.10.6",
"@types/temp": "^0.8.34",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"ts-node-dev": "^1.0.0",
"typescript": "^4.0.5"
},
"dependencies": {
"bwip-js": "^2.0.11",
"pdfkit": "^0.11.0",
"temp": "^0.9.4"
}
}