-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 796 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 796 Bytes
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
{
"name": "@vomjs/monorepo",
"private": true,
"author": {
"name": "Xvezda",
"email": "xvezda@naver.com",
"url": "https://xvezda.com/"
},
"scripts": {
"prepare": "husky install",
"prepublishOnly": "pnpm run build",
"build": "turbo build",
"test": "turbo test",
"lint": "eslint --cache .",
"define": "node scripts/defineSandbox.js",
"postversion": "pnpm run readme",
"readme": "pnpm run define 'docs: update README (%h)'"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"ejs": "^3.1.6",
"eslint": "^8.55.0",
"gh-pages": "^3.2.3",
"husky": "^8.0.3",
"lint-staged": ">=10",
"turbo": "^1.11.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}