forked from logto-io/js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 786 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 786 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
{
"name": "root",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"version": "pnpm i --frozen-lockfile=false && git add pnpm-lock.yaml",
"bootstrap": "lerna bootstrap",
"build": "lerna run --stream build",
"lint": "lerna run --stream lint",
"test": "lerna run test",
"lerna": "lerna",
"prerelease": "lerna run build --include-dependencies --no-private",
"prepare": "if test \"$NODE_ENV\" != \"production\" ; then husky install ; fi"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@commitlint/types": "^17.0.0",
"husky": "^8.0.0",
"lerna": "^5.0.0",
"typescript": "4.7.4"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}