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": {
|
|
|
|
"lint": "eslint --fix 'src/*.js'",
|
2020-04-04 11:19:45 +02:00
|
|
|
"kickstart": "npx lerna bootstrap && npx lerna run build --no-bail && npx lerna run build",
|
2019-04-19 17:31:44 +02:00
|
|
|
"clean": "rimraf dist",
|
|
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
|
|
"jsonlint": "yarn --silent jsonlint:files | xargs -n1 jsonlint -q -c && echo \"jsonlint: no lint errors\"",
|
|
|
|
"jsonlint:files": "find . -name \"*.json\" | grep -v -f .eslintignore",
|
2019-08-03 15:23:52 +02:00
|
|
|
"prettier": "npx prettier --write 'packages/**/src/*.js'",
|
2019-05-02 21:20:40 +02:00
|
|
|
"reconfigure": "npx babel-node scripts/reconfigure.js",
|
2020-04-18 18:13:22 +02:00
|
|
|
"dxf": "npx babel-node scripts/export-dxf.js",
|
2019-08-17 19:04:27 +02:00
|
|
|
"prerelease": "lerna version --no-git-tag-version --no-push && yarn reconfigure && lerna run build",
|
|
|
|
"release": "lerna exec -- 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'",
|
2019-10-06 14:05:30 +02:00
|
|
|
"bump": "git add . && git commit -m 'chore: Reconfigure packages'"
|
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": {
|
2019-07-14 10:26:28 +02:00
|
|
|
"@babel/core": "^7.5.4",
|
|
|
|
"@babel/node": "^7.5.0",
|
|
|
|
"@babel/plugin-external-helpers": "^7.2.0",
|
|
|
|
"@babel/plugin-proposal-class-properties": "^7.4.4",
|
|
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
|
|
|
|
"@babel/preset-env": "^7.4.5",
|
|
|
|
"@babel/preset-react": "^7.0.0",
|
2019-05-31 16:09:41 +02:00
|
|
|
"@babel/register": "^7.4.4",
|
2020-03-11 07:10:25 +00:00
|
|
|
"@commitlint/cli": "8.3.5",
|
2020-01-23 04:59:34 +00:00
|
|
|
"@commitlint/config-conventional": "8.3.4",
|
2019-07-14 10:26:28 +02:00
|
|
|
"@material-ui/core": "^3.9.3",
|
|
|
|
"@material-ui/icons": "^4.2.0",
|
|
|
|
"@material-ui/lab": "^4.0.0-alpha.19",
|
|
|
|
"@storybook/addon-backgrounds": "^5.0.10",
|
|
|
|
"@storybook/addon-knobs": "^5.0.10",
|
|
|
|
"@storybook/addon-notes": "^5.0.10",
|
|
|
|
"@storybook/react": "^5.0.10",
|
2020-02-22 07:31:59 +00:00
|
|
|
"@svgr/rollup": "^5.1.0",
|
2019-08-22 05:21:42 +00:00
|
|
|
"ava": "^2.3.0",
|
2019-07-14 10:26:28 +02:00
|
|
|
"babel-loader": "^8.0.5",
|
2019-04-19 09:53:40 +02:00
|
|
|
"chai": "^4.1.2",
|
2019-07-14 10:26:28 +02:00
|
|
|
"chai-string": "^1.4.0",
|
|
|
|
"chalk": "^2.4.2",
|
2019-04-19 09:53:40 +02:00
|
|
|
"codecov": "^3.1.0",
|
2020-02-22 07:41:25 +00:00
|
|
|
"cross-env": "^7.0.0",
|
2019-09-02 05:49:37 +00:00
|
|
|
"eslint": "^6.3.0",
|
2019-08-20 05:07:15 +00:00
|
|
|
"eslint-config-prettier": "^6.1.0",
|
2019-09-24 05:04:00 +00:00
|
|
|
"eslint-config-standard": "^14.1.0",
|
2019-10-18 18:41:14 +02:00
|
|
|
"eslint-config-standard-react": "^9.2.0",
|
2019-04-19 09:53:40 +02:00
|
|
|
"eslint-plugin-import": "^2.13.0",
|
2020-03-12 04:54:55 +00:00
|
|
|
"eslint-plugin-node": "^11.0.0",
|
2019-08-22 06:17:39 +00:00
|
|
|
"eslint-plugin-prettier": "^3.1.0",
|
2019-04-19 09:53:40 +02:00
|
|
|
"eslint-plugin-promise": "^4.0.0",
|
|
|
|
"eslint-plugin-react": "^7.10.0",
|
2019-08-30 05:15:54 +00:00
|
|
|
"eslint-plugin-standard": "^4.0.1",
|
2020-07-02 05:03:02 +00:00
|
|
|
"fs-extra": "^9.0.1",
|
2019-11-01 17:36:42 +01:00
|
|
|
"gh-pages": "^2.1.1",
|
2019-09-03 04:55:49 +00:00
|
|
|
"husky": "^3.0.5",
|
2020-07-12 18:27:28 +02:00
|
|
|
"js-yaml": "^3.14.0",
|
2019-07-14 10:26:28 +02:00
|
|
|
"jsonlint": "^1.6.3",
|
2020-04-26 13:09:54 +02:00
|
|
|
"lerna": "^3.20.2",
|
2020-04-05 10:50:32 +00:00
|
|
|
"mocha": "^7.1.1",
|
2020-03-11 07:10:04 +00:00
|
|
|
"mustache": "^4.0.0",
|
2019-07-14 10:26:28 +02:00
|
|
|
"node-sass": "^4.11.0",
|
2020-04-04 09:23:33 +00:00
|
|
|
"nyc": "^15.0.1",
|
2019-07-14 10:26:28 +02:00
|
|
|
"open-color": "^1.6.3",
|
2020-04-05 10:48:51 +00:00
|
|
|
"prettier": "^2.0.2",
|
2019-07-14 10:26:28 +02:00
|
|
|
"prop-types": "^15.7.2",
|
2019-04-29 09:01:51 +02:00
|
|
|
"react": "^16.8.6",
|
2019-04-19 09:53:40 +02:00
|
|
|
"react-dom": "^16.4.1",
|
2019-07-14 10:26:28 +02:00
|
|
|
"react-intl": "^2.8.0",
|
|
|
|
"react-scripts": "^3.0.0",
|
2019-09-02 05:39:15 +00:00
|
|
|
"rimraf": "^3.0.0",
|
2019-04-19 09:53:40 +02:00
|
|
|
"rmfr": "^2.0.0",
|
2019-12-15 14:12:29 +01:00
|
|
|
"rollup": "^1.27.13",
|
2019-07-14 10:26:28 +02:00
|
|
|
"rollup-plugin-babel": "^4.3.2",
|
2020-04-05 10:51:26 +00:00
|
|
|
"rollup-plugin-babel-minify": "^10.0.0",
|
2020-04-13 12:27:03 +00:00
|
|
|
"rollup-plugin-commonjs": "10.1.0",
|
2019-09-21 18:02:58 +00:00
|
|
|
"rollup-plugin-filesize": "^6.2.0",
|
2019-07-14 10:26:28 +02:00
|
|
|
"rollup-plugin-json": "^4.0.0",
|
2019-07-19 15:09:05 +02:00
|
|
|
"rollup-plugin-node-resolve": "5.2.0",
|
2019-07-14 10:26:28 +02:00
|
|
|
"rollup-plugin-peer-deps-external": "^2.2.0",
|
|
|
|
"rollup-plugin-postcss": "^2.0.3",
|
|
|
|
"rollup-plugin-sass": "^1.2.2",
|
2019-10-04 05:01:22 +00:00
|
|
|
"rollup-plugin-terser": "^5.1.2",
|
2019-07-14 10:26:28 +02:00
|
|
|
"rollup-plugin-url": "^2.2.1",
|
2020-01-22 17:46:22 +00:00
|
|
|
"rollup-plugin-yaml": "^2.0.0",
|
2019-08-23 05:46:59 +00:00
|
|
|
"standard": "^14.0.2",
|
2019-07-14 10:26:28 +02:00
|
|
|
"storybook-addon-material-ui": "^0.9.0-alpha.18",
|
|
|
|
"uglifycss": "^0.0.29",
|
2019-05-30 21:23:36 +02:00
|
|
|
"verdaccio": ">=3.12.0"
|
2019-04-19 09:53:40 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-04-27 04:51:49 +00:00
|
|
|
"bezier-js": "2.6.1",
|
2019-07-22 22:32:16 +02:00
|
|
|
"file-saver": "2.0.2",
|
2020-04-13 14:21:41 +02:00
|
|
|
"pretty-quick": "^2.0.1",
|
2019-07-14 10:26:28 +02:00
|
|
|
"tlds": "^1.203.1"
|
2019-04-19 09:53:40 +02:00
|
|
|
},
|
2019-04-19 17:31:44 +02:00
|
|
|
"workspaces": [
|
|
|
|
"packages/*"
|
|
|
|
]
|
2019-04-19 08:37:33 +02:00
|
|
|
}
|