forked from enkryptcom/enKrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.37 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
{
"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.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@swc/core": "^1.3.66",
"concurrently": "^7.6.0",
"devmoji": "^2.3.0",
"husky": "^8.0.3",
"node-notifier": "^10.0.1",
"nodemon": "^2.0.22",
"ultra-runner": "^3.10.5"
}
}