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",
|
|
|
|
"design",
|
|
|
|
"parametric design",
|
|
|
|
"sewing",
|
|
|
|
"fashion",
|
|
|
|
"made-to-measure"
|
|
|
|
],
|
|
|
|
"author": "Joost De Cock <joost@decock.org> (https://github.com/joostdecock)",
|
|
|
|
"homepage": "https://freesewing.org/",
|
|
|
|
"license": "MIT",
|
|
|
|
"scripts": {
|
2022-01-30 11:11:53 +01:00
|
|
|
"kickstart": "npx lerna bootstrap && yarn buildall",
|
2019-04-19 17:31:44 +02:00
|
|
|
"clean": "rimraf dist",
|
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'",
|
2021-11-27 20:06:56 +01:00
|
|
|
"reconfigure": "all-contributors generate && node scripts/reconfigure.js",
|
2022-01-23 14:27:05 +01:00
|
|
|
"prerelease": "lerna version --no-git-tag-version --no-push && yarn reconfigure && yarn buildall",
|
2021-12-31 14:16:21 +01:00
|
|
|
"buildall": "lerna run cibuild_step1 && lerna run cibuild_step2",
|
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": {
|
2020-08-02 19:17:06 +02:00
|
|
|
"@babel/core": "^7.11.0",
|
2021-05-22 12:12:37 +02:00
|
|
|
"@babel/node": "^7.14.2",
|
|
|
|
"@babel/plugin-external-helpers": "^7.12.13",
|
|
|
|
"@babel/plugin-proposal-class-properties": "^7.13.0",
|
2020-08-02 19:17:06 +02:00
|
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
|
2022-01-30 11:11:53 +01:00
|
|
|
"@babel/plugin-syntax-flow": "^7.14.5",
|
|
|
|
"@babel/plugin-transform-react-jsx": "^7.14.9",
|
2021-05-22 12:12:37 +02:00
|
|
|
"@babel/preset-env": "^7.14.2",
|
2020-08-02 19:17:06 +02:00
|
|
|
"@babel/preset-react": "^7.10.4",
|
|
|
|
"@babel/register": "^7.10.5",
|
2022-01-15 17:01:22 +00:00
|
|
|
"@commitlint/cli": "^16.0.2",
|
2022-01-07 04:31:18 +00:00
|
|
|
"@commitlint/config-conventional": "^16.0.0",
|
2022-01-30 11:11:53 +01:00
|
|
|
"@fontsource/permanent-marker": "latest",
|
|
|
|
"@fontsource/roboto-mono": "latest",
|
|
|
|
"@fontsource/ubuntu": "latest",
|
2021-05-22 12:12:37 +02:00
|
|
|
"@material-ui/core": "^4.11.4",
|
|
|
|
"@material-ui/icons": "^4.11.2",
|
2022-01-30 11:11:53 +01:00
|
|
|
"@material-ui/lab": "^4.0.0-alpha.60",
|
2020-08-02 19:17:06 +02:00
|
|
|
"@rollup/plugin-babel": "^5.1.0",
|
2022-01-15 18:26:14 +01:00
|
|
|
"@rollup/plugin-commonjs": "^21.0.1",
|
2020-08-02 19:17:06 +02:00
|
|
|
"@rollup/plugin-json": "^4.1.0",
|
2021-05-22 12:12:37 +02:00
|
|
|
"@rollup/plugin-node-resolve": "^13.0.0",
|
2022-01-15 18:27:38 +00:00
|
|
|
"@svgr/rollup": "^6.2.0",
|
2022-01-30 11:11:53 +01:00
|
|
|
"@types/express": "^4.17.13",
|
2022-02-15 07:03:10 +00:00
|
|
|
"@types/node": "^17.0.18",
|
2022-01-30 11:11:53 +01:00
|
|
|
"@types/react": "^17.0.38",
|
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-01-30 11:11:53 +01:00
|
|
|
"axios": "^0.25.0",
|
2020-08-02 19:17:06 +02:00
|
|
|
"babel-loader": "^8.1.0",
|
2022-02-10 04:37:48 +00:00
|
|
|
"bezier-js": "^6.1.0",
|
2020-08-02 19:17:06 +02:00
|
|
|
"chai": "^4.2.0",
|
|
|
|
"chai-string": "^1.5.0",
|
|
|
|
"chalk": "^4.1.0",
|
|
|
|
"codecov": "^3.7.2",
|
|
|
|
"cross-env": "^7.0.2",
|
2020-11-04 20:35:20 +01:00
|
|
|
"deep-freeze": "^0.0.1",
|
2020-10-25 13:48:17 +01:00
|
|
|
"esm": "^3.2.25",
|
2020-08-02 19:17:06 +02:00
|
|
|
"file-saver": "^2.0.2",
|
2021-05-22 12:12:37 +02:00
|
|
|
"fs-extra": "^10.0.0",
|
2021-08-25 04:16:30 +00:00
|
|
|
"husky": "^7.0.2",
|
2021-02-04 18:15:22 +00:00
|
|
|
"js-yaml": "^4.0.0",
|
2021-05-22 12:12:37 +02:00
|
|
|
"lerna": "^4.0.0",
|
2021-09-03 16:42:26 +02:00
|
|
|
"mocha": "^9.1.1",
|
2020-08-02 19:17:06 +02:00
|
|
|
"mustache": "^4.0.1",
|
2022-05-27 15:51:49 +00:00
|
|
|
"netlify-cli": "^10.3.3",
|
2022-01-01 14:44:28 +00:00
|
|
|
"node-sass": "^7.0.1",
|
2020-08-02 19:17:06 +02:00
|
|
|
"nyc": "^15.1.0",
|
|
|
|
"open-color": "^1.7.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",
|
2020-08-02 19:17:06 +02:00
|
|
|
"prismjs": "^1.20.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",
|
|
|
|
"react-intl": "^5.17.6",
|
|
|
|
"react-markdown": "^6.0.2",
|
2022-01-26 08:01:05 +00:00
|
|
|
"react-scripts": "^5.0.0",
|
2021-05-22 12:12:37 +02:00
|
|
|
"remark": "^13.0.0",
|
|
|
|
"remark-html": "^13.0.1",
|
2020-08-02 19:17:06 +02:00
|
|
|
"rimraf": "^3.0.2",
|
2021-05-22 12:12:37 +02:00
|
|
|
"rollup": "^2.48.0",
|
2020-08-02 19:17:06 +02:00
|
|
|
"rollup-plugin-peer-deps-external": "^2.2.3",
|
2019-07-14 10:26:28 +02:00
|
|
|
"rollup-plugin-sass": "^1.2.2",
|
2021-05-22 12:12:37 +02:00
|
|
|
"rollup-plugin-terser": "^7.0.2",
|
2020-01-22 17:46:22 +00:00
|
|
|
"rollup-plugin-yaml": "^2.0.0",
|
2021-02-06 10:35:17 +00:00
|
|
|
"standard": "^16.0.3",
|
2021-05-22 12:12:37 +02:00
|
|
|
"tlds": "^1.221.1",
|
2020-11-04 20:45:18 +01:00
|
|
|
"typeface-raleway": "^1.1.13",
|
2020-12-18 04:45:45 +00:00
|
|
|
"typeface-roboto-condensed": "^1.1.13",
|
2022-01-30 11:11:53 +01:00
|
|
|
"typescript": "^4.5.5",
|
|
|
|
"uglifycss": "^0.0.29",
|
|
|
|
"webpack": "^5.67.0",
|
|
|
|
"yaml": "^1.10.2"
|
2021-05-22 12:12:37 +02:00
|
|
|
},
|
2022-01-30 11:11:53 +01:00
|
|
|
"workspaces": [
|
|
|
|
"packages/*"
|
|
|
|
],
|
2021-04-23 17:57:46 +02:00
|
|
|
"version": "0.0.0",
|
|
|
|
"dependencies": {
|
2021-12-18 15:41:37 +01:00
|
|
|
"autoprefixer": "^10.4.0",
|
2022-01-08 14:07:45 +01:00
|
|
|
"handlebars": "^4.7.7",
|
2021-12-11 14:04:05 +01:00
|
|
|
"jsonfile": "^6.1.0",
|
2021-12-18 15:41:37 +01:00
|
|
|
"postcss": "^8.4.5",
|
2022-02-18 18:24:45 +01:00
|
|
|
"remark-cli": "^10.0.1",
|
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",
|
|
|
|
"remark-preset-lint-recommended": "^6.1.2",
|
2021-12-18 15:41:37 +01:00
|
|
|
"tailwindcss": "^3.0.7"
|
2021-04-23 17:57:46 +02:00
|
|
|
}
|
2019-04-19 08:37:33 +02:00
|
|
|
}
|