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-06-19 14:07:32 +02:00
"kickstart" : "npx lerna bootstrap && yarn buildall && 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" ,
2022-06-14 23:30:00 +02:00
"prettier" : "npx prettier --write 'packages/**/src/*.js' 'packages/**/config/*.js' '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" ,
2022-07-03 13:35:50 -05: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 && lerna run cibuild_step7" ,
2022-06-16 17:11:31 +02:00
"build" : "yarn buildall" ,
2022-02-04 13:22:48 +01:00
"testall" : "node scripts/testall.js" ,
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-02-20 14:04:58 +01:00
"fixdocs" : "remark markdown --quiet --frail --output"
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" ,
2019-04-19 17:31:44 +02:00
"husky" : {
"hooks" : {
2020-04-13 14:21:41 +02:00
"pre-commit" : "pretty-quick --staged"
2019-04-19 17:31:44 +02:00
}
} ,
2019-04-19 08:37:33 +02:00
"devDependencies" : {
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" ,
2022-06-23 07:32:38 +00:00
"@types/node" : "^18.0.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-01-17 04:16:20 +00:00
"ava" : "^4.0.1" ,
2022-08-25 07:58:15 +00:00
"axios" : "^0.27.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" ,
2022-08-15 04:21:03 +00:00
"esbuild" : "^0.15.3" ,
2022-06-14 23:40:35 +02:00
"esbuild-plugin-yaml" : "^0.0.1" ,
2020-10-25 13:48:17 +01:00
"esm" : "^3.2.25" ,
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" ,
2022-06-22 07:53:45 +00:00
"lerna" : "^5.1.4" ,
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" ,
2021-05-22 12:12:37 +02:00
"prettier" : "^2.3.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" ,
2021-05-22 12:12:37 +02:00
"react" : "^17.0.2" ,
"react-dom" : "^17.0.2" ,
2022-08-25 07:58:38 +00:00
"remark" : "^14.0.2" ,
2022-08-25 07:56:49 +00:00
"remark-html" : "^15.0.1" ,
2020-08-02 19:17:06 +02:00
"rimraf" : "^3.0.2" ,
2022-08-24 10:00:19 +02:00
"standard" : "^17.0.0" ,
2021-12-18 15:41:37 +01:00
"autoprefixer" : "^10.4.0" ,
2022-01-08 14:07:45 +01:00
"handlebars" : "^4.7.7" ,
2022-06-28 12:59:31 +02:00
"rehype-format" : "^4.0.1" ,
2022-06-30 04:09:44 +00:00
"remark-cli" : "^11.0.0" ,
2022-02-18 18:32:59 +01:00
"remark-frontmatter" : "^4.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-07-13 19:11:29 +02:00
"remark-preset-lint-recommended" : "^6.1.2"
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" ,
"handlebars" : "^4.7.7" ,
"jsonfile" : "^6.1.0" ,
"postcss" : "^8.4.5" ,
"remark-cli" : "^10.0.1" ,
"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"
}
2019-04-19 08:37:33 +02:00
}