2019-04-19 08:37:33 +02:00
{
"name" : "root" ,
"private" : true ,
2019-04-19 17:31:44 +02:00
"description" : "FreeSewing is an open source platform for made-to-measure sewing patterns" ,
"keywords" : [
"sewing" ,
"parametric design" ,
"made-to-measure"
] ,
"author" : "Joost De Cock <joost@decock.org> (https://github.com/joostdecock)" ,
"homepage" : "https://freesewing.org/" ,
"license" : "MIT" ,
"scripts" : {
2022-06-17 18:23:17 +02:00
"new" : "node --experimental-json-modules --no-warnings scripts/add-software.mjs" ,
"?" : "node scripts/help.mjs" ,
"tips" : "node scripts/help.mjs" ,
2022-06-17 14:12:46 +02:00
"lab" : "cd sites/lab && yarn start" ,
2022-09-28 19:22:22 +02:00
"lab-debug" : "cd sites/lab && yarn start-debug" ,
2023-06-10 12:06:55 +02:00
"kickstart" : "npx yarn install && yarn reconfigure && yarn buildall && yarn prepare && yarn tips" ,
"kickstart:windows" : "npx yarn install && yarn wbuildall && yarn prepare && yarn tips" ,
2022-07-10 15:34:57 +02:00
"cleanall" : "lerna run clean" ,
2021-04-24 09:26:09 +02:00
"test" : "lerna run test" ,
2023-04-20 13:28:00 -04:00
"e2e" : "lerna run e2e" ,
2022-10-13 16:19:36 +02:00
"prettier" : "npx prettier --write 'config/*' 'config/**/*' 'packages/**/src/*.mjs' 'packages/i18n/src/locales/**/*.*' 'packages/**/tests/*.mjs'" ,
2022-06-16 17:11:31 +02:00
"reconfigure" : "all-contributors generate && node --experimental-json-modules --no-warnings scripts/reconfigure.mjs" ,
2022-01-23 14:27:05 +01:00
"prerelease" : "lerna version --no-git-tag-version --no-push && yarn reconfigure && yarn buildall" ,
2023-07-04 21:14:09 +02:00
"buildall" : "lerna run cibuild_step0 && lerna run cibuild_step1 && lerna run cibuild_step2 && lerna run cibuild_step3 && lerna run cibuild_step4 && lerna run cibuild_step5 && lerna run cibuild_step6" ,
2022-06-16 17:11:31 +02:00
"build" : "yarn buildall" ,
2022-09-13 11:32:50 -05:00
"wbuild" : "yarn wbuildall" ,
2022-11-15 11:32:48 -06:00
"testall" : "node scripts/testall.js" ,
2023-05-18 15:59:16 +02:00
"lint" : "LINTER=1 lerna run --no-bail lint -- " ,
2022-09-15 13:49:55 +02:00
"qa" : "yarn qa:prettier && yarn qa:lint" ,
"qa:prettier" : "npx prettier" ,
"qa:lint" : "npx eslint" ,
2022-05-21 19:28:43 +02:00
"release" : "lerna exec --no-bail -- npm publish" ,
2019-08-21 16:29:30 +02:00
"postrelease" : "git add . && git commit -m ':bookmark: v$npm_package_version' && git tag -a v$npm_package_version -m ':bookmark: FreeSewing v$npm_package_version'" ,
2022-01-05 19:00:52 +01:00
"ship" : "lerna exec --no-bail -- npm publish" ,
2021-11-27 20:06:56 +01:00
"bump" : "git add . && git commit -m 'chore: Reconfigure packages'" ,
"contributors:add" : "all-contributors add" ,
"contributors:generate" : "all-contributors generate" ,
"famadd" : "all-contributors add" ,
2022-02-18 18:24:45 +01:00
"famgen" : "all-contributors generate" ,
2022-02-20 14:04:58 +01:00
"checkdocs" : "remark markdown --quiet --frail" ,
2022-05-19 16:19:43 +02:00
"strapi:translate" : "node scripts/strapi-en-to-other.mjs" ,
2022-09-15 13:49:55 +02:00
"fixdocs" : "remark markdown --quiet --frail --output" ,
2023-07-04 21:14:09 +02:00
"wbuildall" : "lerna run wcibuild_step0 && lerna run wcibuild_step1 && lerna run wcibuild_step2 && lerna run wcibuild_step3 && lerna run wcibuild_step4 && lerna run wcibuild_step5 && lerna run wcibuild_step6" ,
2022-09-15 13:49:55 +02:00
"prepare" : "husky install"
2019-04-19 17:31:44 +02:00
} ,
"repository" : {
"type" : "git" ,
"url" : "git+https://github.com/freesewing/freesewing.git"
} ,
"bugs" : {
"url" : "https://github.com/freesewing/freesewing/issues"
} ,
2019-08-03 15:23:52 +02:00
"prettier" : "@freesewing/prettier-config" ,
2022-09-15 13:49:55 +02:00
"lint-staged" : {
"*" : [
2022-10-03 15:08:34 +02:00
"npx prettier --write"
2022-09-15 13:49:55 +02:00
]
2019-04-19 17:31:44 +02:00
} ,
2019-04-19 08:37:33 +02:00
"devDependencies" : {
2022-09-20 12:32:49 -04:00
"@babel/eslint-parser" : "^7.19.1" ,
"@babel/plugin-syntax-import-assertions" : "^7.18.6" ,
2023-06-28 16:52:36 -05:00
"@babel/preset-react" : "^7.22.5" ,
2022-06-22 07:55:10 +00:00
"@commitlint/cli" : "^17.0.2" ,
2022-06-09 04:13:18 +00:00
"@commitlint/config-conventional" : "^17.0.2" ,
2022-01-30 11:11:53 +01:00
"@types/express" : "^4.17.13" ,
2023-05-08 05:11:37 +00:00
"@types/node" : "^20.1.0" ,
2022-04-29 18:12:15 +00:00
"@types/react" : "^18.0.8" ,
2021-11-27 20:06:56 +01:00
"all-contributors-cli" : "^6.20.0" ,
2022-09-10 18:45:57 +02:00
"autoprefixer" : "^10.4.0" ,
2022-12-03 15:45:54 +00:00
"ava" : "^5.1.0" ,
2022-10-08 02:38:39 +00:00
"axios" : "^1.1.2" ,
2020-08-02 19:17:06 +02:00
"chai" : "^4.2.0" ,
"chai-string" : "^1.5.0" ,
"chalk" : "^4.1.0" ,
2022-07-23 14:50:32 +02:00
"codecov" : "^3.8.3" ,
2020-08-02 19:17:06 +02:00
"cross-env" : "^7.0.2" ,
2023-06-13 05:08:24 +00:00
"esbuild" : "^0.18.2" ,
2022-06-14 23:40:35 +02:00
"esbuild-plugin-yaml" : "^0.0.1" ,
2022-09-15 13:49:55 +02:00
"eslint" : "^8.23.1" ,
2022-12-03 15:51:27 +00:00
"eslint-config-next" : "^13.0.6" ,
2022-09-21 10:28:38 -04:00
"eslint-plugin-jsonc" : "^2.4.0" ,
2022-09-20 13:49:34 -04:00
"eslint-plugin-markdown" : "^3.0.0" ,
2022-09-26 22:16:10 -04:00
"eslint-plugin-mongo" : "^1.0.5" ,
2022-09-15 10:23:06 +02:00
"eslint-plugin-yaml" : "^0.5.0" ,
2020-10-25 13:48:17 +01:00
"esm" : "^3.2.25" ,
2022-09-10 18:45:57 +02:00
"handlebars" : "^4.7.7" ,
2022-06-14 23:33:18 +02:00
"husky" : "^8.0.1" ,
2021-02-04 18:15:22 +00:00
"js-yaml" : "^4.0.0" ,
2023-06-19 07:26:57 +00:00
"lerna" : "^7.0.2" ,
2022-09-15 13:49:55 +02:00
"lint-staged" : "^13.0.3" ,
2022-06-22 09:41:07 +02:00
"mocha" : "^10.0.0" ,
2020-08-02 19:17:06 +02:00
"mustache" : "^4.0.1" ,
"nyc" : "^15.1.0" ,
2023-07-10 05:22:49 +00:00
"prettier" : "^3.0.0" ,
2020-08-21 05:33:15 +00:00
"pretty-quick" : "^3.0.0" ,
2019-07-14 10:26:28 +02:00
"prop-types" : "^15.7.2" ,
2022-06-28 12:59:31 +02:00
"rehype-format" : "^4.0.1" ,
2022-09-10 18:45:57 +02:00
"remark" : "^14.0.2" ,
2022-02-18 18:32:59 +01:00
"remark-frontmatter" : "^4.0.1" ,
2022-09-10 18:45:57 +02:00
"remark-html" : "^15.0.1" ,
2022-02-18 18:24:45 +01:00
"remark-lint-emphasis-marker" : "^3.1.1" ,
"remark-lint-list-item-indent" : "^3.1.1" ,
"remark-preset-lint-consistent" : "^5.1.1" ,
2022-09-10 18:45:57 +02:00
"remark-preset-lint-recommended" : "^6.1.2" ,
2023-04-11 04:58:14 +00:00
"rimraf" : "^5.0.0" ,
2022-09-10 18:45:57 +02:00
"standard" : "^17.0.0"
2022-08-24 10:00:19 +02:00
} ,
"workspaces" : [
"designs/*" ,
"packages/*" ,
"plugins/*" ,
"sites/*"
] ,
2022-09-06 09:41:55 +02:00
"version" : "0.0.0" ,
"dependencies" : {
"autoprefixer" : "^10.4.0" ,
2023-06-14 19:08:39 +00:00
"c8" : "^8.0.0" ,
2022-09-06 09:41:55 +02:00
"handlebars" : "^4.7.7" ,
"jsonfile" : "^6.1.0" ,
"postcss" : "^8.4.5" ,
2022-09-06 21:20:47 +02:00
"remark-cli" : "^11.0.0" ,
2022-09-06 09:41:55 +02:00
"remark-frontmatter" : "^4.0.1" ,
"remark-lint-emphasis-marker" : "^3.1.1" ,
"remark-lint-list-item-indent" : "^3.1.1" ,
"remark-preset-lint-consistent" : "^5.1.1" ,
"remark-preset-lint-recommended" : "^6.1.2" ,
"tailwindcss" : "^3.0.7"
2023-05-08 01:34:29 -05:00
} ,
"packageManager" : "yarn@1.22.19"
2019-04-19 08:37:33 +02:00
}