forked from onbloc/adena-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 991 Bytes
/
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
{
"name": "adena-wallet",
"version": "1.4.1",
"description": "Adena Wallet",
"license": "MIT",
"scripts": {
"develop": "nx build:dev adena-extension",
"build": "yarn build:module && yarn build:service && yarn",
"build:changed": "nx affected --target=build",
"build:module": "nx run-many --target=build --projects=adena-module,gno-client",
"build:service": "nx run-many --target=build --projects=adena-extension",
"version:qa": "sh scripts/update-build-version.sh",
"version:package": "sh scripts/update-package-version.sh",
"tag": "sh scripts/create-tag.sh",
"test": "yarn jest"
},
"private": true,
"dependencies": {},
"devDependencies": {
"@nrwl/nx-cloud": "latest",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nx": "15.0.0",
"prettier": "^2.6.2",
"jest": "^29.2.0"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"git add"
]
}
}