1
0
Fork 0
freesewing/sites/backend/package.json

63 lines
1.7 KiB
JSON
Raw Normal View History

2018-10-19 16:25:35 +02:00
{
"name": "backend.freesewing.org",
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 :pray:
2024-02-11 13:43:07 +01:00
"version": "3.2.0",
2022-12-17 16:48:36 +01:00
"description": "FreeSewing backend",
"author": "Joost De Cock <joost@joost.at> (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
"repository": "github:freesewing/freesewing",
2022-12-17 16:48:36 +01:00
"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",
2022-12-17 16:48:36 +01:00
"prettier": "npx prettier --write 'src/*.mjs' 'tests/*.mjs'",
2022-10-29 22:25:00 +02:00
"rmdb": "node ./scripts/rmdb.mjs",
"test": "npx mocha --require mocha-steps tests/index.mjs",
"vbuild": "VERBOSE=1 node build.mjs",
"wbuild": "node build.mjs"
2018-10-19 16:25:35 +02:00
},
2024-01-06 11:57:11 +01:00
"peerDependencies": {},
2018-10-19 16:25:35 +02:00
"dependencies": {
"@aws-sdk/client-sesv2": "3.569.0",
"@prisma/client": "5.13.0",
"bcryptjs": "2.4.3",
"cors": "2.8.5",
"dotenv": "16.4.5",
"express": "4.19.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",
2022-12-30 17:22:35 +01:00
"passport-jwt": "4.0.1",
2024-04-27 16:12:28 +02:00
"pino": "9.0.0",
"qrcode": "1.5.3",
2024-04-27 16:12:28 +02:00
"swagger-ui-dist": "5.17.2",
"swagger-ui-express": "5.0.0"
2018-10-19 16:25:35 +02:00
},
"devDependencies": {
"chai": "5.1.0",
"chai-http": "4.4.0",
"esbuild": "0.21.0",
"mocha": "10.4.0",
"mocha-steps": "1.3.0",
"nodemon": "3.1.0",
"prisma": "5.13.0"
},
2022-12-17 16:48:36 +01:00
"engines": {
2024-02-11 17:31:52 +01:00
"node": ">= 18.17.0 <22"
2022-12-17 16:48:36 +01:00
},
"private": true
2018-10-19 16:25:35 +02:00
}