-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1.05 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
{
"name": "@zktx.io/ptb-builder-monorepo",
"scripts": {
"lint": "eslint 'packages/**/*.{js,jsx,ts,tsx}' --fix",
"format": "prettier --write 'packages/**/*.{js,jsx,ts,tsx,json,css,md}'",
"dev": "npm run build && cd packages/example && npm run dev",
"build": "cd packages/ptb-builder && npm run build",
"version:patch": "lerna version patch",
"version:minor": "lerna version minor",
"prepare": "husky install"
},
"author": "daoauth",
"license": "ISC",
"description": "Sui programmable transaction blocks builder",
"workspaces": [
"packages/ptb-builder",
"packages/example"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^9.1.6",
"lerna": "^8.1.9",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"typescript-eslint": "^8.19.1"
}
}