forked from stan-smith/FossFLOW
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.79 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.79 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "fossflow-monorepo",
"version": "1.10.7",
"private": true,
"description": "Monorepo for FossFLOW diagram editor and library",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "cross-env NODE_ENV=development npm run start --workspace=packages/fossflow-app",
"dev:win": "cross-env NODE_ENV=development npm run start --workspace=packages/fossflow-app",
"dev:lib": "npm run dev --workspace=packages/fossflow-lib",
"dev:backend": "npm run dev --workspace=packages/fossflow-backend",
"build": "npm run build:lib && npm run build:app",
"build:lib": "npm run build --workspace=packages/fossflow-lib",
"build:app": "npm run build --workspace=packages/fossflow-app",
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present && rm -rf node_modules",
"publish:lib": "npm run build:lib && npm publish --workspace=packages/fossflow-lib",
"docker:build": "docker build -t fossflow:local .",
"docker:run": "docker compose -f compose.dev.yml up",
"update-version": "node scripts/update-version.js",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@types/node": "^18.19.129",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"conventional-changelog-conventionalcommits": "^9.1.0",
"cross-env": "^10.1.0",
"semantic-release": "^25.0.3",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"dependencies": {
"dom-to-image-more": "^3.7.1"
},
"overrides": {
"lodash": "^4.17.23",
"lodash-es": "^4.17.23",
"tar": "^7.5.7"
}
}