-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "certificates",
"version": "1.0.0",
"description": "API based certificate creation",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --respawn -- src/server.ts",
"start": "node build/server.js",
"prepare": "husky install",
"test:watch": "jest --watch",
"test": "tsc --noEmit && eslint . && prettier --check . && jest"
},
"author": "Leon Machens",
"license": "MIT",
"engines": {
"npm": ">=7.0.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.0",
"@types/node-fetch": "^2.5.10",
"@types/pdfkit": "^0.11.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^6.0.0",
"jest": "^27.0.4",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"ts-node-dev": "^1.1.6",
"typescript": "^4.3.2"
},
"dependencies": {
"ajv": "^8.8.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"node-fetch": "^2.6.1",
"pdfkit": "^0.12.1"
}
}