-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.05 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.05 KB
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
{
"name": "tedge-flows-workspace",
"version": "1.0.0",
"description": "Experimental repository to exchange examples which use the upcoming tedge-flows feature",
"main": "index.js",
"private": true,
"scripts": {
"format": "npx prettier . --write --trailing-comma all --ignore-path .prettierignore",
"format:check": "npx prettier . --check --trailing-comma all --ignore-path .prettierignore",
"test": "jest --coverageProvider=v8 --coverage",
"build-all": "npm run build --workspaces",
"update-deps": "npx npm-check-updates -u --workspaces",
"publish": "node ./scripts/publish-images.js",
"generate-flow": "node ./scripts/create-flow.js",
"deploy-local": "node ./scripts/deploy-local.js"
},
"author": "",
"license": "ISC",
"workspaces": [
"flows/*"
],
"devDependencies": {
"@types/jest": "^30.0.0",
"esbuild": "^0.27.3",
"esbuild-register": "^3.6.0",
"jest": "^30.2.0",
"jest-esbuild": "^0.4.0",
"prettier": "^3.6.2",
"typescript": "^5.9.3"
},
"dependencies": {
"tedge": "^1.0.0"
}
}