-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.44 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "nebulant_builder",
"version": "1.2.2",
"author": "Develatio",
"license": "GPL v3",
"private": true,
"workspaces": [
"packages/joint/core/",
"packages/joint/plus/src/packages/*",
"packages/react-color/",
"packages/reactcss/",
"packages/react-form-state-manager/"
],
"nohoist": [
"**/joint/**"
],
"scripts": {
"start": "yarn run generate_type_data && yarn run generate_dependencies_list && NODE_ENV=development node esbuild.mjs --watch",
"build_pre": "NODE_ENV=staging node esbuild.mjs",
"build_prod": "NODE_ENV=production node esbuild.mjs",
"scaffold": "node tools/scaffold.mjs",
"drylint": "npx biome lint /code/src",
"test": "NODE_ENV=development TEST_LIVE=0 vitest --coverage --config ./vitest.config.mjs",
"test_live": "NODE_ENV=development TEST_LIVE=1 vitest --coverage --config ./vitest.config.mjs",
"teste2e": "NODE_ENV=development TEST_LIVE=0 npx playwright test --config=playwright.config.js --project=nebulantBuilder",
"teste2elocal": "NODE_ENV=development TEST_LIVE=0 PWDEBUG=console npx playwright test --config=playwright.config.js --project=nebulantBuilder",
"generate_type_data": "node ./src/intellisense/generate_type_data.js",
"generate_dependencies_list": "yarn info --manifest --json | jq -c --arg exclusions $(cat src/ui/structure/About/dev.json | tr '\n' '|' | sed 's/|$//') '[inputs | select(.value | test($exclusions) | not) | { name: .value, version: .children.Version, license: .children.Manifest.License, website: .children.Manifest.Homepage }]' > src/ui/structure/About/deps.json"
},
"dependencies": {
"@joint/core": "workspace:^",
"@joint/format-raster": "workspace:^",
"@joint/format-svg": "workspace:^",
"@joint/free-transform": "workspace:^",
"@joint/keyboard": "workspace:^",
"@joint/navigator": "workspace:^",
"@joint/paper-scroller": "workspace:^",
"@joint/selection": "workspace:^",
"@react-querybuilder/dnd": "^7.6.1",
"bootstrap": "5.3.3",
"fast-clean": "^1.3.2",
"highlight.js": "^11.10.0",
"jsondiffpatch": "^0.6.0",
"lodash-es": "^4.17.21",
"pako": "^2.1.0",
"pubsub-js": "^1.9.4",
"react": "^18.3.1",
"react-bootstrap": "^2.10.4",
"react-color": "workspace:^",
"react-cropper": "^2.3.3",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-form-state-manager": "workspace:^",
"react-querybuilder": "7.6.1",
"react-simple-code-editor": "^0.14.1",
"react-tiny-popover": "^8.0.4",
"react-toastify": "^10.0.5",
"react-window": "^1.8.10",
"semver": "^7.6.3",
"uuid": "^10.0.0",
"workbox-cacheable-response": "^7.1.0",
"workbox-core": "^7.1.0",
"workbox-expiration": "^7.1.0",
"workbox-precaching": "^7.1.0",
"workbox-routing": "^7.1.0",
"workbox-strategies": "^7.1.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@biomejs/js-api": "^0.6.2",
"@biomejs/wasm-nodejs": "^1.8.3",
"@inquirer/prompts": "^5.4.0",
"@playwright/test": "1.46.1",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "8.1.0",
"@vitest/coverage-v8": "^2.0.5",
"autoprefixer": "^10.4.20",
"esbuild": "^0.23.1",
"esbuild-sass-plugin": "^3.3.1",
"espree": "^10.1.0",
"esquery": "^1.6.0",
"eta": "^3.5.0",
"fs-extra": "^11.2.0",
"mime": "4.0.4",
"postcss": "^8.4.45",
"postcss-preset-env": "^10.0.2",
"prettier": "^3.3.3",
"sass-embedded": "^1.78.0",
"to-case": "2.0.0",
"util": "^0.12.5",
"vitest": "^2.0.5"
},
"packageManager": "[email protected]"
}