-
Notifications
You must be signed in to change notification settings - Fork 166
/
Copy pathpackage.json
59 lines (59 loc) · 1.98 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
{
"scripts": {
"ae": "lerna run ae",
"clean": "lerna run clean",
"build": "tsc -b",
"dist": "lerna run dist",
"dist:prod": "lerna run dist:prod",
"lint": "eslint packages/**/src/**/*.ts packages/**/__tests__/**/*.ts packages/**/__integration__/**/*.ts --cache",
"lint:all": "eslint . --ignore-pattern '/**/dist/*' --cache",
"lint:misc": "eslint . --cache --ignore-pattern '/**/dist/*' --ignore-pattern '/packages/' --ignore-pattern '/docs/'",
"lint:docs": "prettier docs/**/*.md --write",
"precommit": "npm run lint && npm run pretty",
"prestart": "npm run build && npm run dist",
"prepublishOnly": "lerna run prepublishOnly",
"pretty": "prettier --write --loglevel=warn \"**/{src,__{tests,integration}__}/**/*.ts\"",
"release:latest": "lerna publish from-package",
"start": "jest --watch",
"test": "jest",
"test:integration": "jest /packages/.*/__integration__/.*",
"test:unit": "jest /packages/.*/__tests__/.*",
"version:latest": "lerna version --conventional-commits --no-changelog"
},
"devDependencies": {
"@eslint/js": "9.18.0",
"@microsoft/api-extractor": "7.49.1",
"@types/jest": "29.5.14",
"@types/node": "22.10.5",
"clean-webpack-plugin": "4.0.0",
"cross-env": "7.0.3",
"eslint": "9.18.0",
"eslint-config-prettier": "9.1.0",
"eslint-formatter-junit": "8.40.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-tsdoc": "0.4.0",
"globals": "15.14.0",
"jest": "29.5.0",
"jest-junit": "15.0.0",
"jest-watch-typeahead": "2.2.2",
"lerna": "8.1.9",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"terser-webpack-plugin": "5.3.11",
"ts-jest": "29.2.5",
"ts-loader": "9.5.2",
"tslint-config-prettier": "1.18.0",
"typescript": "5.7.3",
"typescript-eslint": "8.19.1",
"webpack": "5.97.1",
"webpack-cli": "6.0.1"
},
"private": true,
"workspaces": [
"packages/*"
],
"prettier": {
"endOfLine": "auto",
"proseWrap": "always"
}
}