-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
37 lines (37 loc) · 1016 Bytes
/
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
{
"name": "tamatebako",
"version": "1.0.0",
"private": true,
"description": "Frontend packages for projects at SmartHR",
"workspaces": [
"packages/*"
],
"main": "index.js",
"scripts": {
"start": "yarn build --watch",
"prebuild": "lerna run clean --stream",
"build": "lerna run prebuild --stream && yarn tsc",
"pretest": "yarn build",
"test": "jest",
"tsc": "tsc --build packages --force",
"lint": "eslint '**/*.{ts,tsx}'",
"versionup": "lerna version --conventional-commits",
"prerelease": "yarn build && yarn lint && yarn test",
"release": "lerna publish from-package"
},
"author": "SmartHR",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"eslint": "^8.57.0",
"eslint-config-smarthr": "^6.33.2",
"jest": "^29.7.0",
"lerna": "^8.1.8",
"prettier": "^3.3.2",
"prettier-config-smarthr": "^1.0.0",
"rimraf": "^5.0.10",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"dependencies": {}
}