-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1 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
{
"name": "tamatebako",
"version": "1.0.0",
"private": true,
"description": "Frontend packages for projects at SmartHR",
"main": "index.js",
"scripts": {
"dev": "pnpm build --watch",
"build": "pnpm -r --stream run prebuild && pnpm tsc",
"pretest": "pnpm build",
"test": "jest && pnpm -r run test",
"tsc": "tsc --build packages --force",
"lint": "eslint '**/*.{ts,tsx}'",
"prerelease": "pnpm build && pnpm lint && pnpm test",
"release": "pnpm -r publish",
"prepare": "husky"
},
"author": "SmartHR",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@types/jest": "^30.0.0",
"eslint": "9.39.4",
"eslint-config-smarthr": "14.0.1",
"husky": "^9.1.7",
"jest": "^30.4.2",
"prettier": "^3.8.3",
"prettier-config-smarthr": "^1.0.1",
"react": "^19.2.6",
"rimraf": "^5.0.10",
"ts-jest": "^29.4.9",
"typescript": "^6.0.3"
},
"packageManager": "pnpm@11.0.9"
}