-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
89 lines (89 loc) · 2.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
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
79
80
81
82
83
84
85
86
87
88
89
{
"name": "puppeteer-server",
"version": "0.2.1",
"description": "Koa + TypeScript + Rollup + Puppeteer",
"license": "MIT",
"author": "Wisdom <pdsu.wwz@foxmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/pdsuwwz/puppeteer-server.git"
},
"engines": {
"node": ">=20.x"
},
"type": "module",
"scripts": {
"dev": "nodemon",
"watch": "esno src/main.ts",
"clean:dist": "rm -rf ./dist",
"build": "pnpm clean:dist && rollup --c --configPlugin @rollup/plugin-typescript",
"tsbuild": "pnpm clean:dist && tsc && tsc-alias",
"start": "pm2 start ecosystem.config.cjs --env production",
"restart": "pm2 restart ecosystem.config.cjs --env production",
"stop": "pm2 stop ecosystem.config.cjs",
"delete": "pm2 delete ecosystem.config.cjs",
"delete:all": "pm2 delete all",
"wc": "pm2 list",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"dependencies": {
"@koa/cors": "^4.0.0",
"dotenv": "^16.0.3",
"koa": "^2.13.4",
"koa-bodyparser": "4.4.0",
"koa-router": "^12.0.0",
"pdf-lib": "^1.17.1"
},
"peerDependencies": {
"puppeteer": "^22.13.1"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/node": "^7.19.1",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@eslint/js": "^9.7.0",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@stylistic/eslint-plugin": "^2.3.0",
"@types/bluebird": "*",
"@types/koa": "^2.13.5",
"@types/koa-bodyparser": "4.3.10",
"@types/koa-router": "^7.4.4",
"@types/koa__cors": "^4.0.0",
"@types/node": "^18.8.5",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"axios": "^1.7.2",
"babel-plugin-module-resolver": "^5.0.0",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^9.7.0",
"eslint-define-config": "^2.1.0",
"esno": "^4.7.0",
"globals": "^15.8.0",
"nodemon": "^3.1.4",
"pm2": "^5.2.0",
"rollup": "^4.18.1",
"ts-node": "^10.9.1",
"ts-toolbelt": "^9.6.0",
"tsc-alias": "^1.7.0",
"tsconfig-paths": "^4.1.0",
"tslib": "^2.4.0",
"typescript": "^5.0.0"
},
"tags": [
"koa",
"typescript",
"puppeteer",
"pm2",
"nodemon",
"eslint",
"rollup",
"babel"
]
}