forked from MarketSquare/robotframework-browser
-
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.84 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.84 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": "robotframework-playwright",
"version": "19.12.3",
"main": "index.ts",
"author": "Mikko Korpela <mikko.korpela@gmail.com>",
"license": "Apache-2.0",
"bin": "Browser/wrapper/index.js",
"devDependencies": {
"@types/express": "^5.0.6",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@types/react-router-dom": "^5.3.3",
"@types/strip-comments": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.41.0",
"@yao-pkg/pkg": "github:yao-pkg/pkg",
"esbuild": "^0.27.2",
"esbuild-node-externals": "^1.20.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"express": "^5.2.1",
"grpc_tools_node_protoc_ts": "^5.3.3",
"grpc-tools": "^1.13.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"react": "^19.1.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^19.2.3",
"react-router-dom": "^7.12.0",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@grpc/grpc-js": "^1.14.3",
"@medv/finder": "^4.0.2",
"google-protobuf": "4.0.1",
"monocart-coverage-reports": "^2.12.9",
"pino": "^10.2.1",
"playwright": "^1.57.0",
"strip-comments": "^2.0.1",
"uuid": "^13.0.0"
},
"scripts": {
"build-test-app": "node ./node/build.testapp.js",
"build": "node ./node/build.wrapper.js",
"lint": "eslint \"node/**/*.{ts,tsx}\" --quiet --fix --config ./node/eslint.config.mjs",
"grpc_tools_node_protoc": "grpc_tools_node_protoc"
},
"pkg": {
"scripts": "Browser/wrapper/*.js",
"assets": [
"Browser/wrapper/static/*",
"node_modules/playwright-core/**/*"
]
}
}