-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 3.07 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "pdfmk-server",
"version": "1.7.7",
"private": false,
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/hejny/pdfmk-server"
},
"author": "Pavol Hejný <[email protected]> (https://www.pavolhejny.com/)",
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"start": "npm run develop",
"develop": "npm-run-all --serial build --parallel _develop-server _develop-build",
"_develop-server": "cross-env NODE_ENV=development functions-framework --watch --target=pdfmaker",
"_develop-build": "tsc --watch",
"test": "",
"TODO: test": "jest --runInBand --detectOpenHandles --forceExit --setupFiles dotenv/config",
"lint": "tslint -p tsconfig.json",
"prettier": "prettier --config .prettierrc --write \"./src/**/*.{ts,tsx}\" package.json",
"pretty-imports": "npx organize-imports-cli tsconfig.json",
"prettier-watch": "onchange \"./src/**/*.{ts,tsx}\" -- prettier --config .prettierrc --write \"{{changed}}\"",
"prettier-commit": "git diff --exit-code && npm run pretty-imports && npm run prettier && git add . && git commit --allow-empty -m \"Prettier\"",
"build": "rm -rf ./dist & tsc",
"deploy": "gcloud functions deploy pdfmaker --project printserver-291107 --trigger-http --runtime nodejs16 --region=europe-west3 --memory=1024mb",
"logs": "gcloud functions logs read pdfmaker",
"preversion": "npm test && npm run prettier-commit && npm run lint && npm run build",
"postversion": "git push && git push --tags && npm run deploy"
},
"dependencies": {
"aws-sdk": "2.1066.0",
"body-parse": "0.1.0",
"configchecker": "1.2.0",
"cors": "2.8.4",
"dotenv": "6.1.0",
"express": "4.17.1",
"glob-promise": "3.4.0",
"isomorphic-fetch": "2.2.1",
"node-ssh": "7.0.0",
"promise-sftp": "0.11.3",
"puppeteer": "19.3.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"uuid": "3.4.0",
"waitasecond": "1.11.69"
},
"devDependencies": {
"@google-cloud/functions-framework": "1.7.1",
"@types/body-parser": "1.17.1",
"@types/cors": "2.8.6",
"@types/express": "4.17.2",
"@types/jest": "25.1.1",
"@types/node": "10.17.14",
"@types/react": "16.9.49",
"@types/react-dom": "16.9.8",
"@types/supertest": "2.0.8",
"@types/uuid": "3.4.7",
"cross-env": "7.0.2",
"npm-run-all": "4.1.5",
"onchange": "5.2.0",
"prettier": "1.19.1",
"supertest": "4.0.2",
"ts-node": "10.9.1",
"tslint": "6.1.3",
"typescript": "4.9.3"
},
"description": "A very simple tool library for the waiting using Promises.",
"funding": [
{
"type": "individual",
"url": "https://buymeacoffee.com/hejny"
},
{
"type": "github",
"url": "https://github.com/hejny/pdfmk-server/blob/main/README.md#%EF%B8%8F-contributing"
}
]
}