-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
58 lines (58 loc) · 1.32 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
57
58
{
"name": "@grafana/plugin-e2e",
"version": "1.18.2",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist",
"./package.json"
],
"repository": {
"directory": "packages/plugin-e2e",
"url": "https://github.com/grafana/plugin-tools"
},
"author": "Grafana",
"license": "Apache-2.0",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public",
"provenance": true
},
"scripts": {
"clean": "rm -rf ./dist",
"build": "tsc --project tsconfig.json",
"dev": "nodemon --exec 'tsc'",
"lint": "eslint --cache ./src",
"lint:fix": "npm run lint -- --fix",
"server": "docker compose up --build",
"typecheck": "tsc --emitDeclarationOnly false --noEmit",
"test": "vitest --passWithNoTests",
"playwright:test": "npx playwright test"
},
"engines": {
"node": ">=18 <=22"
},
"peerDependencies": {
"@playwright/test": "^1.41.2"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@types/uuid": "^10.0.0",
"dotenv": "^16.4.7"
},
"dependencies": {
"@grafana/e2e-selectors": "^11.6.0-223459",
"semver": "^7.5.4",
"uuid": "^11.0.2",
"yaml": "^2.3.4"
},
"nodemonConfig": {
"watch": [
"src/**/*"
],
"ext": "*",
"events": {
"start": "cls || clear"
}
}
}