-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
98 lines (98 loc) · 3.79 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
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
94
95
96
97
98
{
"name": "faro-web-sdk",
"version": "0.0.0",
"description": "Monorepo for Faro Web SDK",
"license": "Apache-2.0",
"author": "Grafana Labs",
"homepage": "https://github.com/grafana/faro-web-sdk#readme",
"repository": {
"type": "git",
"url": "https://github.com/grafana/faro-web-sdk.git"
},
"private": true,
"workspaces": [
"packages/**",
"experimental/**",
"demo"
],
"main": "index.js",
"scripts": {
"start": "lerna run --parallel start",
"start:demo": "lerna run dev --scope @grafana/faro-demo",
"start:demo:prod": "lerna run start --scope @grafana/faro-demo --stream",
"watch": "lerna run --parallel watch",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"prepublish": "yarn build",
"cypress": "cypress open",
"clean": "run-s clean:*",
"clean:packages": "lerna run --parallel clean",
"clean:root": "rimraf .cache yarn-error.log",
"quality": "run-p quality:circular-deps quality:test quality:lint quality:e2e",
"quality:packages": "lerna run --parallel quality",
"quality:test": "lerna run --parallel quality:test",
"quality:e2e": "cypress run --headless --browser chrome",
"quality:e2e:ci": "run-s quality:e2e:ci:*",
"quality:e2e:ci:install": "cypress install",
"quality:e2e:ci:run": "start-server-and-test start:demo:prod http://localhost:5173 quality:e2e",
"quality:e2e:dev": "cypress open",
"quality:format": "run-p quality:format:*",
"quality:format:root": "prettier --cache --cache-location=.cache/prettier/root -w \"./**/*.{js,jsx,ts,tsx,css,scss,md,yaml,yml,json}\"",
"quality:format:packages": "lerna run --parallel quality:format",
"quality:lint": "run-s quality:lint:*",
"quality:lint:packages": "lerna run --parallel quality:lint",
"quality:lint:root": "run-p quality:lint:root:*",
"quality:lint:root:markdown": "markdownlint README.md CHANGELOG.md docs/**/*.md",
"quality:lint:root:prettier": "prettier --cache --cache-location=.cache/prettier/root -c \"./**/*.{js,jsx,ts,tsx,css,scss,md,yaml,yml,json}\" \"!./{demo,packages}/**\"",
"quality:circular-deps": "lerna run --parallel quality:circular-deps",
"publish": "lerna publish",
"git-hooks": "run-s git-hooks:*",
"git-hooks:pre-commit": "lint-staged",
"drone": "run-s drone:lint drone:sign",
"drone:lint": "drone lint .drone/drone.yml --trusted",
"drone:sign": "drone --server https://drone.grafana.net sign --save grafana/faro-web-sdk .drone/drone.yml"
},
"devDependencies": {
"@grafana/eslint-config": "^8.0.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.0.0",
"@stylistic/eslint-plugin-ts": "^2.11.0",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"cypress": "^13.15.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.7",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lerna": "^8.1.9",
"lint-staged": "^13.1.0",
"madge": "^7.0.0",
"markdownlint": "^0.27.0",
"markdownlint-cli": "^0.42.0",
"npm-run-all": "^4.1.5",
"os-browserify": "^0.3.0",
"prettier": "^3.0.3",
"process": "^0.11.10",
"rimraf": "^6.0.1",
"rollup": "^4.0.2",
"start-server-and-test": "^2.0.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"packageManager": "yarn@1.22.19",
"resolutions": {
"tough-cookie": "^4.1.3"
},
"dependencies": {}
}