forked from near/near-api-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.03 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
34
35
36
37
38
{
"name": "@near-api-js/monorepo",
"private": true,
"engines": {
"node": ">=16.16.0"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/near-hello",
"**/near-hello/**"
]
},
"scripts": {
"build": "yarn lerna run build",
"clean": "yarn lerna run clean",
"lint": "yarn lerna run lint --stream",
"test": "yarn lerna run test --stream --concurrency 1",
"browserify": "yarn lerna run browserify",
"bundlewatch": "yarn lerna exec yarn run bundlewatch",
"release": "yarn lerna version --conventional-commits",
"prepare": "yarn husky install && yarn lerna run prepare"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/config-lerna-scopes": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"commitlint": "^17.0.3",
"eslint": "^8.20.0",
"lerna": "^5.3.0",
"lerna-changelog": "^2.2.0",
"rimraf": "^3.0.2"
}
}