123456789101112131415161718192021222324252627282930313233343536 |
- {
- "name": "crawling-service",
- "version": "1.0.0",
- "description": "商品信息爬虫服务",
- "author": "lizhuang",
- "main": "src/app.js",
- "scripts": {
- "start": "node src/server.js",
- "dev": "nodemon src/app.js",
- "test": "jest"
- },
- "keywords": [
- "crawler",
- "playwright",
- "express"
- ],
- "license": "ISC",
- "dependencies": {
- "cors": "^2.8.5",
- "dotenv": "^16.4.5",
- "express": "^4.18.2",
- "form-data": "^4.0.2",
- "helmet": "^7.1.0",
- "node-fetch": "^2.7.0",
- "playwright": "^1.42.1",
- "punycode": "^2.3.1",
- "winston": "^3.11.0"
- },
- "devDependencies": {
- "jest": "^29.7.0",
- "nodemon": "^3.1.0"
- },
- "engines": {
- "node": ">=22.0.0"
- }
- }
|