-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
38 lines (38 loc) · 1.1 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
{
"name": "tamatebako",
"version": "1.0.0",
"private": true,
"description": "Frontend packages for projects at SmartHR",
"main": "index.js",
"scripts": {
"dev": "pnpm build --watch",
"build": "lerna run prebuild --stream && pnpm tsc",
"pretest": "pnpm build",
"test": "jest && lerna run test",
"tsc": "tsc --build packages --force",
"lint": "eslint '**/*.{ts,tsx}'",
"versionup": "HUSKY_SKIP=true lerna version --conventional-commits",
"prerelease": "pnpm build && pnpm lint && pnpm test",
"release": "lerna publish from-package",
"prepare": "husky"
},
"author": "SmartHR",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/jest": "^29.5.14",
"eslint": "9.15.0",
"eslint-config-smarthr": "8.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lerna": "^8.1.9",
"prettier": "^3.4.2",
"prettier-config-smarthr": "^1.0.1",
"react": "^19.0.0",
"rimraf": "^5.0.10",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]"
}