-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.17 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.17 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "template-product-api",
"version": "1.0.0",
"description": "Netsocks Template Product API",
"main": "dist/src/bootstrap.js",
"scripts": {
"start": "node dist/bootstrap.js",
"dev": "nodemon --exec ts-node -r tsconfig-paths/register src/bootstrap.ts",
"build": "npm run clean && tsc && tsc-alias",
"test": "npm run build && npm run start",
"clean": "rm -rf ./dist",
"lint": "eslint . --ext .js --ext .ts --ignore-path .gitignore",
"lint-fix": "eslint . --ext .js --ext .ts --ignore-path .gitignore --fix"
},
"repository": {
"type": "git"
},
"private": true,
"author": "soknifedev",
"license": "netsocks.io",
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"@types/async": "^3.2.24",
"@types/bcrypt": "^5.0.2",
"@types/koa": "^2.13.11",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-compress": "^4.0.6",
"@types/koa__cors": "^4.0.3",
"@types/lodash": "^4.17.7",
"@types/mongoose-delete": "^1.0.3",
"@types/mustache": "^4.2.5",
"@types/postal": "^1.0.34",
"@types/ua-parser-js": "^0.7.39",
"@types/user-agents": "^1.0.4",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@wortise/eslint-config": "^1.2.0",
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-align-import": "^1.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"nodemon": "^3.0.1",
"playwright": "^1.45.2",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@casl/ability": "6.5.0",
"@casl/mongoose": "7.2.1",
"@koa/cors": "^5.0.0",
"@koa/router": "^12.0.0",
"@oauth.ws/client": "^2.0.0-beta2",
"@types/useragent": "^2.3.4",
"@ucast/mongo2js": "^1.3.4",
"async": "^3.2.5",
"async-mutex": "^0.5.0",
"axios": "^1.6.2",
"bcrypt": "^5.1.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"deep-object-diff": "^1.1.9",
"deepmerge": "^4.2.2",
"dotenv": "^16.3.1",
"fingerprint-injector": "^2.1.54",
"ghost-cursor-playwright": "^2.1.0",
"google-play-scraper": "^10.0.0",
"http-assert": "^1.4.1",
"https-proxy-agent": "^7.0.5",
"i18next": "^22.4.14",
"jsonwebtoken": "^9.0.2",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.0",
"koa-compress": "^5.0.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"mongoose": "^7.0.4",
"mongoose-delete": "^1.0.1",
"mustache": "^4.2.0",
"playwright-extra": "^4.3.6",
"postal": "^2.0.6",
"puppeteer-extra-plugin-fingerprinter": "^1.1.9",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.10.4",
"safe-flat": "^2.1.0",
"ua-parser-js": "^1.0.38",
"user-agent": "^1.0.4",
"user-agents": "^1.1.248",
"useragent": "^2.3.0",
"uuid": "^8.3.2",
"validator": "^13.11.0",
"zod": "^3.23.8",
"zod-i18n-map": "^2.9.1"
}
}