forked from connectrpc/connect-playwright-es
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"private": true,
"workspaces": [
"./packages/connect-playwright",
"./packages/connect-playwright-example"
],
"scripts": {
"all": "turbo run build test format generate lint attw license-header",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"attw": "turbo run attw",
"format": "turbo run format",
"generate": "turbo run generate",
"license-header": "turbo run license-header"
},
"type": "module",
"engineStrict": true,
"engines": {
"node": ">=16",
"npm": ">=8"
},
"licenseHeader": {
"licenseType": "apache",
"yearRange": "2023-2024",
"copyrightHolder": "The Connect Authors"
},
"devDependencies": {
"@bufbuild/license-header": "^0.0.4",
"@bufbuild/protobuf": "^1.10.0",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.4.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"dependencies": {
"@types/jasmine": "^5.1.4",
"jasmine": "^5.1.0",
"turbo": "1.13.3"
}
}