forked from bcnmy/biconomy-client-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.45 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.45 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "biconomy-sdk",
"repository": {
"type": "git",
"url": "https://github.com/bcnmy/biconomy-client-sdk"
},
"private": true,
"scripts": {
"clean": "lerna clean",
"unbuild": "lerna run unbuild",
"build": "npm install -D nx@latest && lerna run build --stream --npm-client=yarn",
"test:ci": "FORCE_COLOR=1 lerna run test:ci --stream --npm-client=yarn",
"format": "lerna run format --npm-client=yarn",
"postinstall": "cd packages/ethers-lib; hardhat compile",
"prettier": "lerna run prettier --npm-client=npm",
"diff": "lerna diff",
"new-version": "lerna version patch --no-git-tag-version --no-push --conventional-commits --yes",
"lint": "eslint -c .eslintrc.js 'packages/*/src/**/*.{ts,tsx}'",
"lint:fix": "eslint -c .eslintrc.js 'packages/*/src/**/*.{ts,tsx}' --fix"
},
"changelog": {
"labels": {
"feature": "New Feature",
"bug": "Bug Fix"
}
},
"workspaces": {
"packages": [
"packages/*"
]
},
"author": "Biconomy (https://biconomy.io)",
"devDependencies": {
"@types/jest": "^28.1.7",
"@types/mocha": "^9.1.1",
"eslint-plugin-import": "^2.26.0",
"hardhat": "^2.9.9",
"lerna": "^5.5.4",
"lerna-changelog": "^2.2.0",
"nx": "^15.4.1",
"prettier": "2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1"
},
"dependencies": {
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"node-gyp": "^9.1.0",
"typescript": "^4.7.4"
}
}