forked from ibrahimkhled/enKrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.5 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
39
40
41
42
43
44
45
{
"name": "enkrypt",
"packageManager": "[email protected]",
"version": "0.0.2",
"private": true,
"workspaces": [
"packages/signers/*",
"packages/types",
"packages/utils",
"packages/keyring",
"packages/extension-bridge",
"packages/extension",
"packages/storage",
"packages/request",
"packages/hw-wallets",
"packages/swap",
"packages/name-resolution"
],
"scripts": {
"test": "yarn workspaces foreach -v run test",
"lint": "yarn workspaces foreach run lint",
"build:all": "ultra -r build",
"watch": "concurrently 'npm:watch-*'",
"watch-extension": "cd packages/extension && npm run watch",
"watch-ts": "nodemon --exec 'yarn run build:all && node scripts/compile-done.js'",
"upgrade": "yarn upgrade-interactive",
"version:bump:patch": "yarn workspaces foreach -pv --exclude @enkryptcom/extension exec 'yarn version --immediate patch'",
"publish": "yarn workspaces foreach -pv --exclude @enkryptcom/extension exec 'yarn npm publish --access public --otp 474911'",
"version:apply": "yarn version apply --all"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@swc/core": "^1.3.84",
"concurrently": "^8.2.1",
"devmoji": "^2.3.0",
"husky": "^8.0.3",
"node-notifier": "^10.0.1",
"nodemon": "^3.0.1",
"ultra-runner": "^3.10.5"
},
"resolutions": {
"@ledgerhq/compressjs": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.2.1.tgz"
}
}