-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
56 lines (56 loc) · 2.15 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
{
"name": "lana-ws",
"private": true,
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@swc/core": "^1.5.24",
"@swc/helpers": "^0.5.11",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"concurrently": "^8.2.2",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.5",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"rollup": "^4.22.4",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-minify-html": "^1.0.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-swc3": "^0.11.2"
},
"scripts": {
"bump-prerelease": "node ./scripts/pre-release.js",
"preinstall": "npx only-allow pnpm",
"build": "NODE_ENV=production pnpm run build:dev",
"build:dev": "rm -rf lana/out && concurrently -r -g 'rollup -c rollup.config.mjs' 'tsc --noemit --skipLibCheck -p log-viewer/tsconfig.json' 'tsc --noemit --skipLibCheck -p lana/tsconfig.json'",
"watch": "rm -rf lana/out && rollup -w -c rollup.config.mjs",
"prepare": "husky",
"lint": "concurrently -r -g 'eslint . --ext ts' 'prettier --cache **/*.{ts,css,md,scss} --check' 'tsc --noemit --skipLibCheck -p log-viewer/tsconfig.json' 'tsc --noemit --skipLibCheck -p lana/tsconfig.json'",
"test": "jest",
"test:ci": "jest --runInBand",
"prettier-format": "prettier '**/*.ts' --cache --write"
},
"lint-staged": {
"*.{ts,css,md,scss}": "prettier --cache --write"
},
"pnpm": {
"patchedDependencies": {
"@salesforce/[email protected]": "patches/@[email protected]"
},
"overrides": {
"@salesforce/core>jsforce": "^2.0.0-beta.27",
"@salesforce/apex-node>@salesforce/core": "^4.3.11",
"@apexdevtools/sfdx-auth-helper>jsforce": "^2.0.0-beta.27",
"@apexdevtools/sfdx-auth-helper>@salesforce/core": "^4.3.11"
}
}
}