-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.53 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.53 KB
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
{
"name": "wscrapm",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"cli": "nodemon -e ts --exec \"npm run cli-build\"",
"cli-build": "tsc && node dist/cli/bin/cli.js",
"dev": "nodemon -e ts --exec \"npm run build\" ",
"build": "tsc && node dist/server.js",
"pkg-debug": "pkg . --out-path build"
},
"bin": {
"cli": "dist/server.js"
},
"pkg": {
"scripts": [
"dist/server.js"
],
"assets": [
"dist/**/*",
"C:/Users/vboxuser/Desktop/prjct/WScrap-Marketer/WSServer/Database/marketer.db",
"fetchconfig.json",
"node_modules/puppeteer-extra-plugin-stealth",
"node_modules/puppeteer-extra",
"node_modules/sqlite3"
],
"targets": [
"node16-win-x64"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.21",
"axios": "^0.27.2",
"body-parser": "^1.20.2",
"cheerio": "^1.0.0-rc.12",
"commander": "^12.1.0",
"cors": "^2.8.5",
"expo-server-sdk": "^3.10.0",
"express": "^4.19.2",
"googleapis": "^137.1.0",
"ini": "^5.0.0",
"nodemon": "^3.1.0",
"pkg": "^5.8.1",
"puppeteer": "^22.13.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"sqlite3": "^5.1.7",
"tough-cookie": "^4.1.4",
"typescript": "^5.4.5",
"user-agents": "^1.1.270"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/user-agents": "^1.0.4"
}
}