-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
78 lines (78 loc) · 2.7 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
{
"devDependencies": {
"@babel/core": "7.12.9",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-typescript": "^7.26.0",
"@babel/runtime": "7.12.5",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@lwc/eslint-plugin-lwc": "^1.9.0",
"@lwc/jest-preset": "11.2.1",
"@salesforce/eslint-config-lwc": "^3.6.0",
"@salesforce/eslint-plugin-lightning": "^1.0.0",
"@types/debug": "0.0.30",
"@types/express": "^5.0.0",
"@types/jest": "27.5.1",
"@types/jsonwebtoken": "^9.0.7",
"@types/micromatch": "^4.0.9",
"@types/mime-types": "^2.1.4",
"@types/ncp": "^2.0.8",
"@types/node": "^22.10.1",
"@types/tar": "^6.1.13",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"babel-jest": "^29.7.0",
"conventional-changelog-cli": "^5.0.0",
"eslint": "8.57.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"husky": "2.4.0",
"isbinaryfile": "^5.0.4",
"jest": "^27.5.1",
"jest-environment-jsdom": "^27.5.1",
"jsonwebtoken": "^9.0.2",
"lerna": "^8.1.9",
"prettier": "^3.4.1",
"rimraf": "^6.0.1",
"ts-jest": "^27.1.5",
"typescript": "^5.7.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/salesforce/best.git"
},
"scripts": {
"build:docs": "yarn workspace @best/docs build",
"build:frontends": "lerna exec --scope @best/agent-frontend --scope @best/frontend -- yarn build",
"build": "tsc -b",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"clean": "lerna run clean && lerna clean --yes && rimraf -g packages/**/build && rimraf packages/**/tsconfig.tsbuildinfo && rimraf -g packages/**/dist && rimraf -g packages/**/node_modules",
"lint": "eslint packages/ --ext=js,ts",
"perf": "cd packages/best-benchmarks/ && yarn start",
"prepare": "yarn build && yarn build:frontends",
"prettier": "prettier --write '**/*.{css,js,md,ts}'",
"publish": "lerna publish from-package",
"release": "lerna version -m 'chore(release): publish %s' --exact --force-publish=* --no-git-tag-version --no-push --no-commit-hooks",
"start": "node ./scripts/start.js",
"test": "jest --config ./scripts/jest/root.config.js",
"watch:docs": "yarn workspace @best/docs watch"
},
"volta": {
"node": "22.11.0",
"yarn": "1.22.22"
},
"workspaces": [
"docs",
"packages/*",
"packages/@best/*"
]
}