forked from enkryptcom/enKrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1014 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": "enkrypt",
"packageManager": "yarn@3.2.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/name-resolution"
],
"scripts": {
"test": "yarn workspaces foreach -pv 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'"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@swc/core": "^1.3.26",
"concurrently": "^7.6.0",
"devmoji": "^2.3.0",
"husky": "^8.0.3",
"node-notifier": "^10.0.1",
"nodemon": "^2.0.20",
"ultra-runner": "^3.10.5"
}
}