-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.43 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.43 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
44
45
46
47
48
49
50
51
52
{
"name": "lana-ws",
"private": true,
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rolldown/plugin-node-polyfills": "^1.0.3",
"@rollup/plugin-alias": "^6.0.0",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@swc/core": "^1.15.18",
"@swc/helpers": "^0.5.19",
"@swc/jest": "^0.2.39",
"@types/jest": "^30.0.0",
"@typescript-eslint/parser": "^8.56.1",
"concurrently": "^9.2.1",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"lint-staged": "^16.3.2",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"rolldown": "1.0.0-rc.8",
"rollup": "^4.59.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-swc3": "^0.12.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"bump-prerelease": "node ./scripts/pre-release.js",
"build": "NODE_ENV=production pnpm run build:dev",
"build:fast": "NODE_ENV=production pnpm run build:dev:fast",
"build:dev": "rm -rf lana/out && concurrently -r -g 'rollup -c rollup.config.mjs' 'tsc --noemit --skipLibCheck -p apex-log-parser/tsconfig.json' 'tsc --noemit --skipLibCheck -p log-viewer/tsconfig.json' 'tsc --noemit --skipLibCheck -p lana/tsconfig.json'",
"build:dev:fast": "rm -rf lana/out && concurrently -r -g 'rolldown -c rolldown.config.ts' 'tsc --noemit --skipLibCheck -p apex-log-parser/tsconfig.json' '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",
"watch:fast": "rm -rf lana/out && rolldown -w -c rolldown.config.ts",
"lint": "concurrently -r -g 'eslint **/*.ts' 'prettier --cache **/*.{ts,css,md,scss} --check --experimental-cli' 'tsc --noemit --skipLibCheck -p apex-log-parser/tsconfig.json' '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 --experimental-cli"
},
"lint-staged": {
"*.{ts,css,md,scss}": "prettier --cache --write --experimental-cli"
}
}