-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.83 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.83 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
{
"name": "gpt-inner-call",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"serve": "nx serve gpt-auto-api",
"start:api": "node dist/apps/gpt-auto-api/main.js",
"start:api:dev": "ts-node apps/gpt-auto-api/src/main.ts",
"build": "nx build gpt-auto-api",
"prune": "nx run gpt-auto-api:prune",
"lint": "nx lint gpt-auto-api",
"test": "nx test gpt-auto-api",
"build-extension-react": "nx build-all extension",
"build-fe": "yarn build-extension-react",
"watch-extension-build": "nodemon --exec 'yarn build-extension-react' --watch apps/extension/src --ext ts,tsx,js,jsx,html,css,json",
"build-n8n-node": "cd packages/n8n-nodes-browcall-gate && yarn build",
"add-n8n-node": "yarn build-n8n-node && bash ./scripts/n8n-nodes-browcall-gate.sh",
"watch-n8n-node-build": "cd packages/n8n-nodes-browcall-gate && yarn build:watch"
},
"dependencies": {
"body-parser": "^2.2.1",
"cors": "^2.8.5",
"cross-env": "^10.1.0",
"dotenv": "^17.2.3",
"express": "^4.21.2",
"playwright": "^1.57.0",
"playwright-extra": "^4.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"turndown": "^7.2.2",
"turndown-plugin-gfm": "^1.0.2",
"ws": "^8.18.3"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@nx/esbuild": "22.3.3",
"@nx/eslint": "22.3.3",
"@nx/eslint-plugin": "22.3.3",
"@nx/jest": "22.3.3",
"@nx/js": "22.3.3",
"@nx/node": "22.3.3",
"@nx/react": "22.3.3",
"@nx/vite": "22.3.3",
"@nx/web": "22.3.3",
"@swc-node/register": "~1.9.1",
"@swc/cli": "~0.6.0",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/chrome": "^0.1.32",
"@types/express": "^4.17.21",
"@types/jest": "^30.0.0",
"@types/node": "20.19.9",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/turndown": "^5.0.6",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/ui": "^4.0.0",
"autoprefixer": "10.4.13",
"esbuild": "^0.19.2",
"eslint": "^9.8.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.1",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "5.0.0",
"jest": "^30.0.2",
"jest-environment-node": "^30.0.2",
"jest-util": "^30.0.2",
"jiti": "2.4.2",
"jsdom": "~22.1.0",
"jsonc-eslint-parser": "^2.1.0",
"nodemon": "^3.1.11",
"postcss": "8.4.38",
"prettier": "~3.6.2",
"tailwindcss": "3.4.3",
"ts-jest": "^29.4.0",
"ts-node": "10.9.1",
"tslib": "^2.8.1",
"typescript": "~5.9.2",
"typescript-eslint": "^8.40.0",
"unplugin-dts": "^1.0.0-beta.6",
"vite": "^7.0.0",
"vitest": "^4.0.0"
}
}