-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.19 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.19 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
{
"name": "@exceptionless/monorepo",
"private": true,
"version": "3.0.0-dev",
"license": "Apache-2.0",
"scripts": {
"clean": "rimraf -g packages/*/dist example/*/dist",
"build": "npm run build --workspaces --if-present",
"watch": "npm run watch --workspaces --if-present",
"lint": "run-s -c lint:eslint lint:prettier",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"version": "npm --no-git-tag-version --workspaces=true version",
"upgrade": "ncu -i",
"upgrade:workspaces": "ncu -i --workspaces"
},
"workspaces": [
"packages/core",
"packages/browser",
"packages/angularjs",
"packages/node",
"packages/react",
"packages/vue",
"example/*"
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"@vitest/eslint-plugin": "^1.1.34",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"jsdom": "^26.0.0",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"typescript": "^6.0.2",
"typescript-eslint": "^8.57.2",
"vitest": "^3.0.11"
}
}