forked from MarketSquare/robotframework-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.63 KB
/
package.json
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
{
"name": "robotframework-playwright",
"version": "2.3.4",
"main": "index.ts",
"author": "Mikko Korpela <mikko.korpela@gmail.com>",
"license": "Apache-2.0",
"devDependencies": {
"@types/express": "^4.17.9",
"@types/pino": "^6.3.4",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.6",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.5.0",
"express": "^4.17.1",
"grpc-tools": "^1.10.0",
"grpc_tools_node_protoc_ts": "^5.0.1",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.7",
"pino": "^6.7.0",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-draggable": "^4.4.3",
"react-router-dom": "^5.2.0",
"ts-loader": "^8.0.11",
"ts-node": "^9.1.1",
"tslint": "^6.1.2",
"typescript": "^3.9.3",
"webpack": "^5.10.1",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"@grpc/grpc-js": "^1.1.7",
"@types/uuid": "^8.3.0",
"google-protobuf": "3.14.0",
"playwright": "^1.6.2",
"uuid": "^8.3.2"
},
"husky": {
"hooks": {
"pre-commit": "echo 'precommit 🔱' && inv lint",
"pre-push": "echo 'prepush 🚀' && inv build && inv utest && inv atest"
}
},
"scripts": {
"build": "webpack --config node/webpack.config.js",
"watch": "webpack --config node/webpack.config.js --watch",
"lint": "eslint 'node/**/*.{ts,tsx}' --quiet --fix"
}
}