-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 997 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 997 Bytes
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
{
"name": "supporting-server",
"version": "0.0.1",
"description": "Supporting server for working with puppeeter",
"main": "index.js",
"author": "bra1ndump",
"license": "ISC",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon index.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\""
},
"dependencies": {
"@vercel/blob": "^0.20.0",
"axios": "^1.6.7",
"crypto": "^1.0.1",
"express": "^4.18.2",
"puppeteer": "^21.11.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.16",
"@types/puppeteer": "^7.0.4",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}