1
0
Fork 0
freesewing/sites/backend/package.json
joostdecock 38bb3bc6f0 release: v3.2.0
- Added:
  - core:
    - Added the `Path.combine()` method
    - The `Path.join()` method is now variadic
    - The `Path.length()` now takes an parameter to include move operations in the length calculation
  - lumina:
    - Initial release
  - lumira:
    - Initial release
  - plugin-annotations:
    - The `title` macro now takes a `notes` and `classes.notes` as its config, allowing you to add notes
    - The `classes.cutlist` config is removed from the title plugin, cutlist info is now included as notes
  - plugin-i18n:
    - This plugin now supports translation of nested arrays of strings, giving you more flexibility to concatenate translated parts of strings
  - react-components:
    - This Pattern component now supports translation of nested arrays of strings, giving you more flexibility to concatenate translated parts of strings
  - sandy:
    - Added a new *panels* option
  - tristan:
    - Inital release
- Deprecated:
  - core:
    - Calling `Path.join` with a second parameter to indicate that the resulting paths most be closed is now deprecated and will be removed in FreeSewing v4.
- Fixed:
  - brian:
    - Take biceps ease into account when calculating armhole depth
  - carlton:
    - Fixed a stray seam allowance path on the collar
  - charlie:
    - The back pocket welt (4) and front pocket facing (8) incorrectly indicated to cut 2 instead of 4 in the cutlist. Fixes #5791
  - hugo:
    - Fix issue that crashed the design when complete is off. Fixes #6006
    - Base pocket opening on pocket height, rather than width of the garment. Fixes #6004
- Removed:
  - plugin-annotations:
    - The `classes.cutlist` config is removed from the title plugin, cutlist info is now included as notes

Shout-out to @woutervdub and @benjamesben for their many contributotions
to this v3.2 release 🙏
2024-02-11 13:43:07 +01:00

63 lines
1.7 KiB
JSON

{
"name": "backend.freesewing.org",
"version": "3.2.0",
"description": "FreeSewing backend",
"author": "Joost De Cock <joost@joost.at> (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
"repository": "github:freesewing/freesewing",
"license": "MIT",
"bugs": {
"url": "https://github.com/freesewing/freesewing/issues"
},
"funding": {
"type": "individual",
"url": "https://freesewing.org/patrons/join"
},
"scripts": {
"build": "node build.mjs",
"clean": "rimraf dist",
"dev": "nodemon src/index.mjs",
"initdb": "npx prisma db push",
"mbuild": "NO_MINIFY=1 node build.mjs",
"newdb": "node ./scripts/newdb.mjs",
"prettier": "npx prettier --write 'src/*.mjs' 'tests/*.mjs'",
"rmdb": "node ./scripts/rmdb.mjs",
"test": "npx mocha --require mocha-steps tests/index.mjs",
"vbuild": "VERBOSE=1 node build.mjs",
"wbuild": "node build.mjs"
},
"peerDependencies": {},
"dependencies": {
"@aws-sdk/client-sesv2": "3.504.0",
"@prisma/client": "5.9.0",
"bcryptjs": "2.4.3",
"cors": "2.8.5",
"dotenv": "16.4.1",
"express": "4.18.2",
"js-yaml": "4.1.0",
"lodash.get": "4.4.2",
"mustache": "4.2.0",
"otplib": "12.0.1",
"passport": "0.7.0",
"passport-http": "0.3.0",
"passport-jwt": "4.0.1",
"pino": "8.17.2",
"qrcode": "1.5.3",
"swagger-ui-dist": "5.11.2",
"swagger-ui-express": "5.0.0"
},
"devDependencies": {
"chai": "5.0.3",
"chai-http": "4.4.0",
"esbuild": "0.20.0",
"mocha": "10.2.0",
"mocha-steps": "1.3.0",
"nodemon": "3.0.3",
"prisma": "5.9.0"
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"private": true
}