-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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
{
"name": "@exceptionless/monorepo",
"private": true,
"version": "2.0.0-dev",
"license": "Apache-2.0",
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"moduleNameMapper": {
"^@exceptionless/(.*)$": "<rootDir>/packages/$1/src"
},
"preset": "ts-jest",
"resolver": "jest-ts-webcompat-resolver"
},
"scripts": {
"clean": "rimraf packages/*/dist example/*/dist",
"build": "npm run build --workspaces --if-present",
"watch": "npm run watch --workspaces --if-present",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "npm test --workspaces --if-present",
"version": "npm --no-git-tag-version --workspaces=true version"
},
"workspaces": [
"packages/core",
"packages/browser",
"packages/angularjs",
"packages/node",
"packages/react",
"packages/vue",
"example/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-eslint-plugin": "^5.0.8",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsdoc": "^40.0.0",
"rimraf": "^4.1.2",
"typescript": "^4.9.5"
}
}