-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.15 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.15 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
{
"name": "npcs",
"version": "1.0.0",
"description": "Create a PDF containing NPCs cards",
"main": "./src/server.js",
"scripts": {
"dev": "tsc-watch --onSuccess \"node ./dist/src/server.js\"",
"start": "node ./dist/src/server.js",
"build": "tsc",
"lint": "eslint src --ext .ts --max-warnings 0"
},
"author": "Adrien Rault <adrien@rault.io>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.20.1",
"ejs": "^3.1.7",
"express": "^4.18.2",
"lodash": "^4.17.21",
"pdf-lib": "^1.3.0",
"pdf-puppeteer": "^1.1.9",
"sharp": "^0.30.5",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/body-parser": "^1.17.1",
"@types/ejs": "^3.0.0",
"@types/express": "^4.17.2",
"@types/lodash": "^4.14.149",
"@types/node": "^13.1.1",
"@types/sharp": "^0.23.1",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"tsc-watch": "^4.0.0",
"typescript": "^3.7.4"
},
"engines": {
"node": "^12.14.0"
}
}