-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.56 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
{
"name": "@lazycuh/retry",
"version": "2.0.0",
"private": false,
"type": "module",
"license": "MIT",
"keywords": [],
"scripts": {
"build": "pnpm build:cjs && pnpm build:esm",
"build:cjs": "cd projects/lib && rimraf build/cjs && tsc --project tsconfig.cjs.json && webpack --env module=cjs",
"build:esm": "cd projects/lib && rimraf build/esm && tsc --project tsconfig.esm.json && webpack --env module=esm",
"check-code-styles": "prettier --check \"**/(*.ts|*.json|*.md)\"",
"lint-staged": "lint-staged",
"lint": "eslint projects/**/src/*.ts",
"prepare": "husky",
"publish-package": "cd dist && npm publish",
"test:local": "vitest run -c ./vitest/vitest.config.ts",
"test:ci": "vitest run -c ./vitest/vitest.config.ts",
"update-toc": "markdown-toc -i README.md"
},
"devDependencies": {
"@lazycuh/eslint-config-base-with-vitest": "^3.0.5",
"@types/node": "^18.18.2",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^9.7.0",
"husky": "^9.1.0",
"lint-staged": "^15.2.7",
"markdown-toc": "^1.2.0",
"prettier": "^3.3.3",
"remove-files-webpack-plugin": "^1.5.0",
"rimraf": "^5.0.9",
"source-map-loader": "^4.0.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"typescript": "^5.5.3",
"vite": "^5.3.4",
"vitest": "1.6.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
},
"lint-staged": {
"**/*.ts": [
"prettier -w --cache",
"eslint --fix --cache"
],
"**/*.{json,md}": [
"prettier -w --cache"
]
}
}