forked from enkryptcom/enkrypt-connectors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 839 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
{
"name": "enkrypt-connectors",
"packageManager": "[email protected]",
"description": "Various connectors necessary for Enkrypt",
"repository": "[email protected]:enkryptcom/enkrypt-connectors.git",
"author": "kvhnuke <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"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": {
"concurrently": "^7.3.0",
"node-notifier": "^10.0.1",
"nodemon": "^2.0.19",
"ultra-runner": "^3.10.5"
}
}