-
Notifications
You must be signed in to change notification settings - Fork 164
/
package.json
48 lines (48 loc) · 1.77 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
46
47
48
{
"name": "enkrypt",
"packageManager": "[email protected]",
"version": "0.0.3",
"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 312003'",
"version:apply": "yarn version apply --all",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@swc/core": "^1.7.28",
"concurrently": "^8.2.2",
"husky": "^9.1.6",
"node-notifier": "^10.0.1",
"nodemon": "^3.1.7",
"ultra-runner": "^3.10.5"
},
"resolutions": {
"@ledgerhq/compressjs": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.2.1.tgz",
"@noble/hashes": "^1.4.0",
"fork-ts-checker-webpack-plugin": "^6.5.3",
"@amplitude/plugin-autocapture-browser@^1.0.2": "patch:@amplitude/plugin-autocapture-browser@npm%3A1.0.3#./.yarn/patches/@amplitude-plugin-autocapture-browser-npm-1.0.3-edb25bef55.patch"
}
}