🔧 Reconfigure packages
This commit is contained in:
parent
2c04ee2c93
commit
bb2bce9bcf
53 changed files with 565 additions and 531 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -19,6 +19,7 @@ packages/components/withLanguage
|
|||
packages/components/Workbench
|
||||
packages/core/coverage
|
||||
packages/workbench
|
||||
.netlify
|
||||
|
||||
# dependencies
|
||||
node_modules
|
||||
|
|
|
@ -6,6 +6,9 @@ _:
|
|||
pubforce: "npm publish"
|
||||
symlink: "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
start: "rollup -c -w"
|
||||
_types:
|
||||
pattern:
|
||||
netlify: "echo \"Not configured yet\""
|
||||
create-freesewing-pattern:
|
||||
clean: "!"
|
||||
nodebuild: "!"
|
||||
|
@ -23,15 +26,14 @@ components:
|
|||
build: "npm run clean && rollup -c"
|
||||
watch: "BABEL_ENV=production rollup -c -w -o dist/index.js -f cjs"
|
||||
core:
|
||||
build: "npm run clean && rollup -c && rollup -c rollup.tests.js",
|
||||
testonly: "BABEL_ENV=production mocha tests/*.test.js",
|
||||
test: "BABEL_ENV=production nyc -x node_modules -x tests/fixtures -x bin-pack mocha tests/*.test.js",
|
||||
report: "BABEL_ENV=production nyc report --reporter=html",
|
||||
coverage: "BABEL_ENV=production nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov",
|
||||
build: "npm run clean && rollup -c && rollup -c rollup.tests.js"
|
||||
testonly: "BABEL_ENV=production mocha tests/*.test.js"
|
||||
test: "BABEL_ENV=production nyc -x node_modules -x tests/fixtures -x bin-pack mocha tests/*.test.js"
|
||||
report: "BABEL_ENV=production nyc report --reporter=html"
|
||||
coverage: "BABEL_ENV=production nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov"
|
||||
i18n:
|
||||
# react-scripts doesn't handle .mjs files correctly
|
||||
modulebuild: '!'
|
||||
build: "npm run clean && npm run nodebuild"
|
||||
pattern-info:
|
||||
prepare: "node src/prebuild.js"
|
||||
utils:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "aaron-example",
|
||||
"homepage": "https://freesewing.github.io/aaron",
|
||||
"homepage": "https://aaron.freesewing.dev/",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -24,22 +24,28 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"aaron: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
"start": "rollup -c -w",
|
||||
"netlify": "echo \"Not configured yet\""
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/brian": "^2.0.0-beta.12",
|
||||
"@freesewing/core": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.13",
|
||||
"@freesewing/brian": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||
"babel-eslint": "10.0.1",
|
||||
"eslint": "^5.16.0",
|
||||
"babel-jest": "24.7.1",
|
||||
"jest": "24.7.1",
|
||||
"@freesewing/components": "^2.0.0-beta.13",
|
||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||
|
@ -49,21 +55,11 @@
|
|||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||
"@freesewing/utils": "^2.0.0-beta.13",
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"@svgr/rollup": "^2.4.1",
|
||||
"babel-eslint": "10.0.1",
|
||||
"babel-jest": "24.7.1",
|
||||
"cross-env": "^5.1.4",
|
||||
"eslint": "^5.16.0",
|
||||
"gh-pages": "^1.2.0",
|
||||
"jest": "24.7.1",
|
||||
"prop-types": "15.7.2",
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"react-intl": "2.8.0",
|
||||
"react-scripts": "^3.0.0",
|
||||
"webpack": "4.29.6",
|
||||
"rollup": "^0.64.1",
|
||||
"rollup-plugin-babel": "^4.0.1",
|
||||
"rollup-plugin-babel-minify": "^7.0.0",
|
||||
|
@ -73,7 +69,11 @@
|
|||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||
"rollup-plugin-postcss": "^1.6.2",
|
||||
"rollup-plugin-url": "^1.4.0",
|
||||
"webpack": "4.29.6"
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"react-intl": "2.8.0",
|
||||
"prop-types": "15.7.2"
|
||||
},
|
||||
"files": [
|
||||
"dist/*",
|
||||
|
|
|
@ -24,22 +24,28 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"bent: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
"start": "rollup -c -w",
|
||||
"netlify": "echo \"Not configured yet\""
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/brian": "^2.0.0-beta.12",
|
||||
"@freesewing/core": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.13",
|
||||
"@freesewing/brian": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||
"babel-eslint": "10.0.1",
|
||||
"eslint": "^5.16.0",
|
||||
"babel-jest": "24.7.1",
|
||||
"jest": "24.7.1",
|
||||
"@freesewing/components": "^2.0.0-beta.13",
|
||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||
|
@ -49,21 +55,11 @@
|
|||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||
"@freesewing/utils": "^2.0.0-beta.13",
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"@svgr/rollup": "^2.4.1",
|
||||
"babel-eslint": "10.0.1",
|
||||
"babel-jest": "24.7.1",
|
||||
"cross-env": "^5.1.4",
|
||||
"eslint": "^5.16.0",
|
||||
"gh-pages": "^1.2.0",
|
||||
"jest": "24.7.1",
|
||||
"prop-types": "15.7.2",
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"react-intl": "2.8.0",
|
||||
"react-scripts": "^3.0.0",
|
||||
"webpack": "4.29.6",
|
||||
"rollup": "^0.64.1",
|
||||
"rollup-plugin-babel": "^4.0.1",
|
||||
"rollup-plugin-babel-minify": "^7.0.0",
|
||||
|
@ -73,7 +69,11 @@
|
|||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||
"rollup-plugin-postcss": "^1.6.2",
|
||||
"rollup-plugin-url": "^1.4.0",
|
||||
"webpack": "4.29.6"
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"react-intl": "2.8.0",
|
||||
"prop-types": "15.7.2"
|
||||
},
|
||||
"files": [
|
||||
"dist/*",
|
||||
|
|
|
@ -24,21 +24,27 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"brian: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
"start": "rollup -c -w",
|
||||
"netlify": "echo \"Not configured yet\""
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||
"babel-eslint": "10.0.1",
|
||||
"eslint": "^5.16.0",
|
||||
"babel-jest": "24.7.1",
|
||||
"jest": "24.7.1",
|
||||
"@freesewing/components": "^2.0.0-beta.13",
|
||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||
|
@ -48,21 +54,11 @@
|
|||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||
"@freesewing/utils": "^2.0.0-beta.13",
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"@svgr/rollup": "^2.4.1",
|
||||
"babel-eslint": "10.0.1",
|
||||
"babel-jest": "24.7.1",
|
||||
"cross-env": "^5.1.4",
|
||||
"eslint": "^5.16.0",
|
||||
"gh-pages": "^1.2.0",
|
||||
"jest": "24.7.1",
|
||||
"prop-types": "15.7.2",
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"react-intl": "2.8.0",
|
||||
"react-scripts": "^3.0.0",
|
||||
"webpack": "4.29.6",
|
||||
"rollup": "^0.64.1",
|
||||
"rollup-plugin-babel": "^4.0.1",
|
||||
"rollup-plugin-babel-minify": "^7.0.0",
|
||||
|
@ -72,7 +68,11 @@
|
|||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||
"rollup-plugin-postcss": "^1.6.2",
|
||||
"rollup-plugin-url": "^1.4.0",
|
||||
"webpack": "4.29.6"
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"react-intl": "2.8.0",
|
||||
"prop-types": "15.7.2"
|
||||
},
|
||||
"files": [
|
||||
"dist/*",
|
||||
|
|
|
@ -24,21 +24,27 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"bruce: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
"start": "rollup -c -w",
|
||||
"netlify": "echo \"Not configured yet\""
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||
"babel-eslint": "10.0.1",
|
||||
"eslint": "^5.16.0",
|
||||
"babel-jest": "24.7.1",
|
||||
"jest": "24.7.1",
|
||||
"@freesewing/components": "^2.0.0-beta.13",
|
||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||
|
@ -48,21 +54,11 @@
|
|||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||
"@freesewing/utils": "^2.0.0-beta.13",
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"@svgr/rollup": "^2.4.1",
|
||||
"babel-eslint": "10.0.1",
|
||||
"babel-jest": "24.7.1",
|
||||
"cross-env": "^5.1.4",
|
||||
"eslint": "^5.16.0",
|
||||
"gh-pages": "^1.2.0",
|
||||
"jest": "24.7.1",
|
||||
"prop-types": "15.7.2",
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"react-intl": "2.8.0",
|
||||
"react-scripts": "^3.0.0",
|
||||
"webpack": "4.29.6",
|
||||
"rollup": "^0.64.1",
|
||||
"rollup-plugin-babel": "^4.0.1",
|
||||
"rollup-plugin-babel-minify": "^7.0.0",
|
||||
|
@ -72,7 +68,11 @@
|
|||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||
"rollup-plugin-postcss": "^1.6.2",
|
||||
"rollup-plugin-url": "^1.4.0",
|
||||
"webpack": "4.29.6"
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"react-intl": "2.8.0",
|
||||
"prop-types": "15.7.2"
|
||||
},
|
||||
"files": [
|
||||
"dist/*",
|
||||
|
|
|
@ -24,25 +24,31 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"carlita: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
"start": "rollup -c -w",
|
||||
"netlify": "echo \"Not configured yet\""
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/bent": "^2.0.0-beta.12",
|
||||
"@freesewing/carlton": "^2.0.0-beta.12",
|
||||
"@freesewing/core": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-bust": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-buttons": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.13",
|
||||
"@freesewing/bent": "^2.0.0-beta.13",
|
||||
"@freesewing/carlton": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-bust": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-buttons": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||
"babel-eslint": "10.0.1",
|
||||
"eslint": "^5.16.0",
|
||||
"babel-jest": "24.7.1",
|
||||
"jest": "24.7.1",
|
||||
"@freesewing/components": "^2.0.0-beta.13",
|
||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||
|
@ -52,21 +58,11 @@
|
|||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||
"@freesewing/utils": "^2.0.0-beta.13",
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"@svgr/rollup": "^2.4.1",
|
||||
"babel-eslint": "10.0.1",
|
||||
"babel-jest": "24.7.1",
|
||||
"cross-env": "^5.1.4",
|
||||
"eslint": "^5.16.0",
|
||||
"gh-pages": "^1.2.0",
|
||||
"jest": "24.7.1",
|
||||
"prop-types": "15.7.2",
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"react-intl": "2.8.0",
|
||||
"react-scripts": "^3.0.0",
|
||||
"webpack": "4.29.6",
|
||||
"rollup": "^0.64.1",
|
||||
"rollup-plugin-babel": "^4.0.1",
|
||||
"rollup-plugin-babel-minify": "^7.0.0",
|
||||
|
@ -76,7 +72,11 @@
|
|||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||
"rollup-plugin-postcss": "^1.6.2",
|
||||
"rollup-plugin-url": "^1.4.0",
|
||||
"webpack": "4.29.6"
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"react-intl": "2.8.0",
|
||||
"prop-types": "15.7.2"
|
||||
},
|
||||
"files": [
|
||||
"dist/*",
|
||||
|
|
|
@ -24,23 +24,29 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"carlton: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
"start": "rollup -c -w",
|
||||
"netlify": "echo \"Not configured yet\""
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/bent": "^2.0.0-beta.12",
|
||||
"@freesewing/core": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-buttons": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.13",
|
||||
"@freesewing/bent": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-buttons": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||
"babel-eslint": "10.0.1",
|
||||
"eslint": "^5.16.0",
|
||||
"babel-jest": "24.7.1",
|
||||
"jest": "24.7.1",
|
||||
"@freesewing/components": "^2.0.0-beta.13",
|
||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||
|
@ -50,21 +56,11 @@
|
|||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||
"@freesewing/utils": "^2.0.0-beta.13",
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"@svgr/rollup": "^2.4.1",
|
||||
"babel-eslint": "10.0.1",
|
||||
"babel-jest": "24.7.1",
|
||||
"cross-env": "^5.1.4",
|
||||
"eslint": "^5.16.0",
|
||||
"gh-pages": "^1.2.0",
|
||||
"jest": "24.7.1",
|
||||
"prop-types": "15.7.2",
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"react-intl": "2.8.0",
|
||||
"react-scripts": "^3.0.0",
|
||||
"webpack": "4.29.6",
|
||||
"rollup": "^0.64.1",
|
||||
"rollup-plugin-babel": "^4.0.1",
|
||||
"rollup-plugin-babel-minify": "^7.0.0",
|
||||
|
@ -74,7 +70,11 @@
|
|||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||
"rollup-plugin-postcss": "^1.6.2",
|
||||
"rollup-plugin-url": "^1.4.0",
|
||||
"webpack": "4.29.6"
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"react-intl": "2.8.0",
|
||||
"prop-types": "15.7.2"
|
||||
},
|
||||
"files": [
|
||||
"dist/*",
|
||||
|
|
|
@ -24,21 +24,27 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"cathrin: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
"start": "rollup -c -w",
|
||||
"netlify": "echo \"Not configured yet\""
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||
"babel-eslint": "10.0.1",
|
||||
"eslint": "^5.16.0",
|
||||
"babel-jest": "24.7.1",
|
||||
"jest": "24.7.1",
|
||||
"@freesewing/components": "^2.0.0-beta.13",
|
||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||
|
@ -48,21 +54,11 @@
|
|||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||
"@freesewing/utils": "^2.0.0-beta.13",
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"@svgr/rollup": "^2.4.1",
|
||||
"babel-eslint": "10.0.1",
|
||||
"babel-jest": "24.7.1",
|
||||
"cross-env": "^5.1.4",
|
||||
"eslint": "^5.16.0",
|
||||
"gh-pages": "^1.2.0",
|
||||
"jest": "24.7.1",
|
||||
"prop-types": "15.7.2",
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"react-intl": "2.8.0",
|
||||
"react-scripts": "^3.0.0",
|
||||
"webpack": "4.29.6",
|
||||
"rollup": "^0.64.1",
|
||||
"rollup-plugin-babel": "^4.0.1",
|
||||
"rollup-plugin-babel-minify": "^7.0.0",
|
||||
|
@ -72,7 +68,11 @@
|
|||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||
"rollup-plugin-postcss": "^1.6.2",
|
||||
"rollup-plugin-url": "^1.4.0",
|
||||
"webpack": "4.29.6"
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"react-intl": "2.8.0",
|
||||
"prop-types": "15.7.2"
|
||||
},
|
||||
"files": [
|
||||
"dist/*",
|
||||
|
|
|
@ -21,27 +21,30 @@
|
|||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w",
|
||||
"storybook": "start-storybook -p 6663",
|
||||
"watch": "BABEL_ENV=production rollup -c -w -o dist/index.js -f cjs"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12",
|
||||
"@freesewing/css-theme": "^2.0.0-beta.12",
|
||||
"@freesewing/examples": "^2.0.0-beta.12",
|
||||
"@freesewing/i18n": "^2.0.0-beta.12",
|
||||
"@freesewing/mui-theme": "^2.0.0-beta.12",
|
||||
"@freesewing/pattern-info": "^2.0.0-beta.12",
|
||||
"@freesewing/rendertest": "^2.0.0-beta.12",
|
||||
"@freesewing/utils": "^2.0.0-beta.12",
|
||||
"react": "^16.8",
|
||||
"prop-types": "15.7.2",
|
||||
"@freesewing/pattern-info": "^2.0.0-beta.13",
|
||||
"@freesewing/mui-theme": "^2.0.0-beta.13",
|
||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||
"@freesewing/core": "^2.0.0-beta.13",
|
||||
"@freesewing/examples": "^2.0.0-beta.13",
|
||||
"@freesewing/rendertest": "^2.0.0-beta.13",
|
||||
"typeface-roboto-condensed": "latest",
|
||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||
"@freesewing/utils": "^2.0.0-beta.13",
|
||||
"react-intl": "^2.8.0",
|
||||
"@material-ui/core": "^4.0.1",
|
||||
"@material-ui/icons": "^4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"prismjs": "1.16.0",
|
||||
"prop-types": "15.7.2",
|
||||
"react": "^16.8",
|
||||
"react-intl": "^2.8.0",
|
||||
"typeface-roboto-condensed": "latest"
|
||||
"prismjs": "1.16.0"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"Blockquote/*",
|
||||
"Draft/*",
|
||||
|
|
|
@ -26,20 +26,22 @@
|
|||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"build": "npm run clean && rollup -c && rollup -c rollup.tests.js",
|
||||
"testonly": "BABEL_ENV=production mocha tests/*.test.js",
|
||||
"test": "BABEL_ENV=production nyc -x node_modules -x tests/fixtures -x bin-pack mocha tests/*.test.js",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w",
|
||||
"testonly": "BABEL_ENV=production mocha tests/*.test.js",
|
||||
"report": "BABEL_ENV=production nyc report --reporter=html",
|
||||
"coverage": "BABEL_ENV=production nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov",
|
||||
"watch": "BABEL_ENV=production rollup -c -w"
|
||||
"coverage": "BABEL_ENV=production nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov"
|
||||
},
|
||||
"peerDependencies": {},
|
||||
"dependencies": {
|
||||
"bezier-js": "^2.2.13",
|
||||
"bin-pack": "1.0.2",
|
||||
"hooks": "^0.3.2"
|
||||
},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -20,11 +20,11 @@
|
|||
"test": "echo \"create-freesewing-pattern: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {},
|
||||
"dependencies": {
|
||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||
"@freesewing/pattern-info": "^2.0.0-beta.13",
|
||||
"chalk": "^2.4.2",
|
||||
"commander": "^2.19.0",
|
||||
"conf": "^2.2.0",
|
||||
|
@ -40,8 +40,11 @@
|
|||
"p-each-series": "^1.0.0",
|
||||
"parse-git-config": "^3.0.0",
|
||||
"validate-npm-package-name": "^3.0.0",
|
||||
"which": "^1.3.1"
|
||||
"which": "^1.3.1",
|
||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||
"@freesewing/pattern-info": "^2.0.0-beta.13"
|
||||
},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"lib",
|
||||
"template",
|
||||
|
|
|
@ -19,18 +19,19 @@
|
|||
"main": "dist/theme.css",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npx node-sass --output-style compressed src/theme.scss dist/theme.css",
|
||||
"test": "echo \"css-theme: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w",
|
||||
"watch": "npx node-sass --watch --output-style compressed src/theme.scss dist/theme.css"
|
||||
},
|
||||
"peerDependencies": {},
|
||||
"dependencies": {
|
||||
"open-color": "1.6.3"
|
||||
},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -19,21 +19,27 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"examples: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
"start": "rollup -c -w",
|
||||
"netlify": "echo \"Not configured yet\""
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||
"babel-eslint": "10.0.1",
|
||||
"eslint": "^5.16.0",
|
||||
"babel-jest": "24.7.1",
|
||||
"jest": "24.7.1",
|
||||
"@freesewing/components": "^2.0.0-beta.13",
|
||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||
|
@ -43,21 +49,11 @@
|
|||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||
"@freesewing/utils": "^2.0.0-beta.13",
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"@svgr/rollup": "^2.4.1",
|
||||
"babel-eslint": "10.0.1",
|
||||
"babel-jest": "24.7.1",
|
||||
"cross-env": "^5.1.4",
|
||||
"eslint": "^5.16.0",
|
||||
"gh-pages": "^1.2.0",
|
||||
"jest": "24.7.1",
|
||||
"prop-types": "15.7.2",
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"react-intl": "2.8.0",
|
||||
"react-scripts": "^3.0.0",
|
||||
"webpack": "4.29.6",
|
||||
"rollup": "^0.64.1",
|
||||
"rollup-plugin-babel": "^4.0.1",
|
||||
"rollup-plugin-babel-minify": "^7.0.0",
|
||||
|
@ -67,7 +63,11 @@
|
|||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||
"rollup-plugin-postcss": "^1.6.2",
|
||||
"rollup-plugin-url": "^1.4.0",
|
||||
"webpack": "4.29.6"
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"react-intl": "2.8.0",
|
||||
"prop-types": "15.7.2"
|
||||
},
|
||||
"files": [
|
||||
"dist/*",
|
||||
|
|
|
@ -24,21 +24,27 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"florent: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
"start": "rollup -c -w",
|
||||
"netlify": "echo \"Not configured yet\""
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||
"babel-eslint": "10.0.1",
|
||||
"eslint": "^5.16.0",
|
||||
"babel-jest": "24.7.1",
|
||||
"jest": "24.7.1",
|
||||
"@freesewing/components": "^2.0.0-beta.13",
|
||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||
|
@ -48,21 +54,11 @@
|
|||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||
"@freesewing/utils": "^2.0.0-beta.13",
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"@svgr/rollup": "^2.4.1",
|
||||
"babel-eslint": "10.0.1",
|
||||
"babel-jest": "24.7.1",
|
||||
"cross-env": "^5.1.4",
|
||||
"eslint": "^5.16.0",
|
||||
"gh-pages": "^1.2.0",
|
||||
"jest": "24.7.1",
|
||||
"prop-types": "15.7.2",
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"react-intl": "2.8.0",
|
||||
"react-scripts": "^3.0.0",
|
||||
"webpack": "4.29.6",
|
||||
"rollup": "^0.64.1",
|
||||
"rollup-plugin-babel": "^4.0.1",
|
||||
"rollup-plugin-babel-minify": "^7.0.0",
|
||||
|
@ -72,7 +68,11 @@
|
|||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||
"rollup-plugin-postcss": "^1.6.2",
|
||||
"rollup-plugin-url": "^1.4.0",
|
||||
"webpack": "4.29.6"
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"react-intl": "2.8.0",
|
||||
"prop-types": "15.7.2"
|
||||
},
|
||||
"files": [
|
||||
"dist/*",
|
||||
|
|
|
@ -24,21 +24,27 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"huey: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
"start": "rollup -c -w",
|
||||
"netlify": "echo \"Not configured yet\""
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||
"babel-eslint": "10.0.1",
|
||||
"eslint": "^5.16.0",
|
||||
"babel-jest": "24.7.1",
|
||||
"jest": "24.7.1",
|
||||
"@freesewing/components": "^2.0.0-beta.13",
|
||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||
|
@ -48,21 +54,11 @@
|
|||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||
"@freesewing/utils": "^2.0.0-beta.13",
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"@svgr/rollup": "^2.4.1",
|
||||
"babel-eslint": "10.0.1",
|
||||
"babel-jest": "24.7.1",
|
||||
"cross-env": "^5.1.4",
|
||||
"eslint": "^5.16.0",
|
||||
"gh-pages": "^1.2.0",
|
||||
"jest": "24.7.1",
|
||||
"prop-types": "15.7.2",
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"react-intl": "2.8.0",
|
||||
"react-scripts": "^3.0.0",
|
||||
"webpack": "4.29.6",
|
||||
"rollup": "^0.64.1",
|
||||
"rollup-plugin-babel": "^4.0.1",
|
||||
"rollup-plugin-babel-minify": "^7.0.0",
|
||||
|
@ -72,7 +68,11 @@
|
|||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||
"rollup-plugin-postcss": "^1.6.2",
|
||||
"rollup-plugin-url": "^1.4.0",
|
||||
"webpack": "4.29.6"
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"react-intl": "2.8.0",
|
||||
"prop-types": "15.7.2"
|
||||
},
|
||||
"files": [
|
||||
"dist/*",
|
||||
|
|
|
@ -24,21 +24,27 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"hugo: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
"start": "rollup -c -w",
|
||||
"netlify": "echo \"Not configured yet\""
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||
"babel-eslint": "10.0.1",
|
||||
"eslint": "^5.16.0",
|
||||
"babel-jest": "24.7.1",
|
||||
"jest": "24.7.1",
|
||||
"@freesewing/components": "^2.0.0-beta.13",
|
||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||
|
@ -48,21 +54,11 @@
|
|||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||
"@freesewing/utils": "^2.0.0-beta.13",
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"@svgr/rollup": "^2.4.1",
|
||||
"babel-eslint": "10.0.1",
|
||||
"babel-jest": "24.7.1",
|
||||
"cross-env": "^5.1.4",
|
||||
"eslint": "^5.16.0",
|
||||
"gh-pages": "^1.2.0",
|
||||
"jest": "24.7.1",
|
||||
"prop-types": "15.7.2",
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"react-intl": "2.8.0",
|
||||
"react-scripts": "^3.0.0",
|
||||
"webpack": "4.29.6",
|
||||
"rollup": "^0.64.1",
|
||||
"rollup-plugin-babel": "^4.0.1",
|
||||
"rollup-plugin-babel-minify": "^7.0.0",
|
||||
|
@ -72,7 +68,11 @@
|
|||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||
"rollup-plugin-postcss": "^1.6.2",
|
||||
"rollup-plugin-url": "^1.4.0",
|
||||
"webpack": "4.29.6"
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"react-intl": "2.8.0",
|
||||
"prop-types": "15.7.2"
|
||||
},
|
||||
"files": [
|
||||
"dist/*",
|
||||
|
|
|
@ -20,16 +20,18 @@
|
|||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"build": "npm run clean && npm run nodebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"i18n: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/pattern-info": "^2.0.0-beta.12"
|
||||
"@freesewing/pattern-info": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -25,11 +25,6 @@ export default {
|
|||
file: main,
|
||||
format: "cjs",
|
||||
sourcemap: true
|
||||
},
|
||||
{
|
||||
file: module,
|
||||
format: "es",
|
||||
sourcemap: true
|
||||
}
|
||||
],
|
||||
plugins: [
|
||||
|
|
|
@ -24,21 +24,27 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"jaeger: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
"start": "rollup -c -w",
|
||||
"netlify": "echo \"Not configured yet\""
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||
"babel-eslint": "10.0.1",
|
||||
"eslint": "^5.16.0",
|
||||
"babel-jest": "24.7.1",
|
||||
"jest": "24.7.1",
|
||||
"@freesewing/components": "^2.0.0-beta.13",
|
||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||
|
@ -48,21 +54,11 @@
|
|||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||
"@freesewing/utils": "^2.0.0-beta.13",
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"@svgr/rollup": "^2.4.1",
|
||||
"babel-eslint": "10.0.1",
|
||||
"babel-jest": "24.7.1",
|
||||
"cross-env": "^5.1.4",
|
||||
"eslint": "^5.16.0",
|
||||
"gh-pages": "^1.2.0",
|
||||
"jest": "24.7.1",
|
||||
"prop-types": "15.7.2",
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"react-intl": "2.8.0",
|
||||
"react-scripts": "^3.0.0",
|
||||
"webpack": "4.29.6",
|
||||
"rollup": "^0.64.1",
|
||||
"rollup-plugin-babel": "^4.0.1",
|
||||
"rollup-plugin-babel-minify": "^7.0.0",
|
||||
|
@ -72,7 +68,11 @@
|
|||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||
"rollup-plugin-postcss": "^1.6.2",
|
||||
"rollup-plugin-url": "^1.4.0",
|
||||
"webpack": "4.29.6"
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"react-intl": "2.8.0",
|
||||
"prop-types": "15.7.2"
|
||||
},
|
||||
"files": [
|
||||
"dist/*",
|
||||
|
|
|
@ -21,14 +21,16 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"models: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -19,19 +19,20 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"mui-theme: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@material-ui/core": "^4.0.1",
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -22,19 +22,20 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"pattern-info: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w",
|
||||
"prepare": "node src/prebuild.js"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -24,17 +24,16 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"patterns: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {
|
||||
"@freesewing/aaron": "^2.0.0-beta.13",
|
||||
|
@ -55,6 +54,7 @@
|
|||
"@freesewing/trayvon": "^2.0.0-beta.13",
|
||||
"@freesewing/wahid": "^2.0.0-beta.13"
|
||||
},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -24,17 +24,18 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"plugin-banner: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -25,27 +25,27 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"plugin-bundle: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {
|
||||
"@freesewing/plugin-cutonfold": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-dimension": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-grainline": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-logo": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-round": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-title": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-scalebox": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-sprinkle": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-title": "^2.0.0-beta.13"
|
||||
"@freesewing/plugin-round": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-sprinkle": "^2.0.0-beta.13"
|
||||
},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -24,17 +24,18 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"plugin-bust: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -24,17 +24,18 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"plugin-buttons: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -24,17 +24,18 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"plugin-cutonfold: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -24,17 +24,18 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"plugin-debug: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -24,17 +24,18 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"plugin-designer: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -24,17 +24,18 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"plugin-dimension: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -24,17 +24,18 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"plugin-flip: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -24,17 +24,18 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"plugin-grainline: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -24,17 +24,18 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"plugin-i18n: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -24,17 +24,18 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"plugin-logo: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -24,17 +24,18 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"plugin-round: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -24,17 +24,18 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"plugin-scalebox: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -24,17 +24,18 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"plugin-sprinkle: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -24,17 +24,18 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"plugin-svgattr: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -24,17 +24,18 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"plugin-theme: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -24,17 +24,18 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"plugin-title: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -24,17 +24,18 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"plugin-validate: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -24,21 +24,27 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"rendertest: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
"start": "rollup -c -w",
|
||||
"netlify": "echo \"Not configured yet\""
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||
"babel-eslint": "10.0.1",
|
||||
"eslint": "^5.16.0",
|
||||
"babel-jest": "24.7.1",
|
||||
"jest": "24.7.1",
|
||||
"@freesewing/components": "^2.0.0-beta.13",
|
||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||
|
@ -48,21 +54,11 @@
|
|||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||
"@freesewing/utils": "^2.0.0-beta.13",
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"@svgr/rollup": "^2.4.1",
|
||||
"babel-eslint": "10.0.1",
|
||||
"babel-jest": "24.7.1",
|
||||
"cross-env": "^5.1.4",
|
||||
"eslint": "^5.16.0",
|
||||
"gh-pages": "^1.2.0",
|
||||
"jest": "24.7.1",
|
||||
"prop-types": "15.7.2",
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"react-intl": "2.8.0",
|
||||
"react-scripts": "^3.0.0",
|
||||
"webpack": "4.29.6",
|
||||
"rollup": "^0.64.1",
|
||||
"rollup-plugin-babel": "^4.0.1",
|
||||
"rollup-plugin-babel-minify": "^7.0.0",
|
||||
|
@ -72,7 +68,11 @@
|
|||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||
"rollup-plugin-postcss": "^1.6.2",
|
||||
"rollup-plugin-url": "^1.4.0",
|
||||
"webpack": "4.29.6"
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"react-intl": "2.8.0",
|
||||
"prop-types": "15.7.2"
|
||||
},
|
||||
"files": [
|
||||
"dist/*",
|
||||
|
|
|
@ -24,21 +24,27 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"shin: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
"start": "rollup -c -w",
|
||||
"netlify": "echo \"Not configured yet\""
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||
"babel-eslint": "10.0.1",
|
||||
"eslint": "^5.16.0",
|
||||
"babel-jest": "24.7.1",
|
||||
"jest": "24.7.1",
|
||||
"@freesewing/components": "^2.0.0-beta.13",
|
||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||
|
@ -48,21 +54,11 @@
|
|||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||
"@freesewing/utils": "^2.0.0-beta.13",
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"@svgr/rollup": "^2.4.1",
|
||||
"babel-eslint": "10.0.1",
|
||||
"babel-jest": "24.7.1",
|
||||
"cross-env": "^5.1.4",
|
||||
"eslint": "^5.16.0",
|
||||
"gh-pages": "^1.2.0",
|
||||
"jest": "24.7.1",
|
||||
"prop-types": "15.7.2",
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"react-intl": "2.8.0",
|
||||
"react-scripts": "^3.0.0",
|
||||
"webpack": "4.29.6",
|
||||
"rollup": "^0.64.1",
|
||||
"rollup-plugin-babel": "^4.0.1",
|
||||
"rollup-plugin-babel-minify": "^7.0.0",
|
||||
|
@ -72,7 +68,11 @@
|
|||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||
"rollup-plugin-postcss": "^1.6.2",
|
||||
"rollup-plugin-url": "^1.4.0",
|
||||
"webpack": "4.29.6"
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"react-intl": "2.8.0",
|
||||
"prop-types": "15.7.2"
|
||||
},
|
||||
"files": [
|
||||
"dist/*",
|
||||
|
|
|
@ -24,24 +24,30 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"simon: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
"start": "rollup -c -w",
|
||||
"netlify": "echo \"Not configured yet\""
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/brian": "^2.0.0-beta.12",
|
||||
"@freesewing/core": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-buttons": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-flip": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.13",
|
||||
"@freesewing/brian": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-flip": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||
"babel-eslint": "10.0.1",
|
||||
"eslint": "^5.16.0",
|
||||
"babel-jest": "24.7.1",
|
||||
"jest": "24.7.1",
|
||||
"@freesewing/components": "^2.0.0-beta.13",
|
||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||
|
@ -51,21 +57,11 @@
|
|||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||
"@freesewing/utils": "^2.0.0-beta.13",
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"@svgr/rollup": "^2.4.1",
|
||||
"babel-eslint": "10.0.1",
|
||||
"babel-jest": "24.7.1",
|
||||
"cross-env": "^5.1.4",
|
||||
"eslint": "^5.16.0",
|
||||
"gh-pages": "^1.2.0",
|
||||
"jest": "24.7.1",
|
||||
"prop-types": "15.7.2",
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"react-intl": "2.8.0",
|
||||
"react-scripts": "^3.0.0",
|
||||
"webpack": "4.29.6",
|
||||
"rollup": "^0.64.1",
|
||||
"rollup-plugin-babel": "^4.0.1",
|
||||
"rollup-plugin-babel-minify": "^7.0.0",
|
||||
|
@ -75,7 +71,11 @@
|
|||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||
"rollup-plugin-postcss": "^1.6.2",
|
||||
"rollup-plugin-url": "^1.4.0",
|
||||
"webpack": "4.29.6"
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"react-intl": "2.8.0",
|
||||
"prop-types": "15.7.2"
|
||||
},
|
||||
"files": [
|
||||
"dist/*",
|
||||
|
|
|
@ -24,21 +24,27 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"sven: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
"start": "rollup -c -w",
|
||||
"netlify": "echo \"Not configured yet\""
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||
"babel-eslint": "10.0.1",
|
||||
"eslint": "^5.16.0",
|
||||
"babel-jest": "24.7.1",
|
||||
"jest": "24.7.1",
|
||||
"@freesewing/components": "^2.0.0-beta.13",
|
||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||
|
@ -48,21 +54,11 @@
|
|||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||
"@freesewing/utils": "^2.0.0-beta.13",
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"@svgr/rollup": "^2.4.1",
|
||||
"babel-eslint": "10.0.1",
|
||||
"babel-jest": "24.7.1",
|
||||
"cross-env": "^5.1.4",
|
||||
"eslint": "^5.16.0",
|
||||
"gh-pages": "^1.2.0",
|
||||
"jest": "24.7.1",
|
||||
"prop-types": "15.7.2",
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"react-intl": "2.8.0",
|
||||
"react-scripts": "^3.0.0",
|
||||
"webpack": "4.29.6",
|
||||
"rollup": "^0.64.1",
|
||||
"rollup-plugin-babel": "^4.0.1",
|
||||
"rollup-plugin-babel-minify": "^7.0.0",
|
||||
|
@ -72,7 +68,11 @@
|
|||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||
"rollup-plugin-postcss": "^1.6.2",
|
||||
"rollup-plugin-url": "^1.4.0",
|
||||
"webpack": "4.29.6"
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"react-intl": "2.8.0",
|
||||
"prop-types": "15.7.2"
|
||||
},
|
||||
"files": [
|
||||
"dist/*",
|
||||
|
|
|
@ -24,21 +24,27 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"tamiko: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
"start": "rollup -c -w",
|
||||
"netlify": "echo \"Not configured yet\""
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||
"babel-eslint": "10.0.1",
|
||||
"eslint": "^5.16.0",
|
||||
"babel-jest": "24.7.1",
|
||||
"jest": "24.7.1",
|
||||
"@freesewing/components": "^2.0.0-beta.13",
|
||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||
|
@ -48,21 +54,11 @@
|
|||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||
"@freesewing/utils": "^2.0.0-beta.13",
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"@svgr/rollup": "^2.4.1",
|
||||
"babel-eslint": "10.0.1",
|
||||
"babel-jest": "24.7.1",
|
||||
"cross-env": "^5.1.4",
|
||||
"eslint": "^5.16.0",
|
||||
"gh-pages": "^1.2.0",
|
||||
"jest": "24.7.1",
|
||||
"prop-types": "15.7.2",
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"react-intl": "2.8.0",
|
||||
"react-scripts": "^3.0.0",
|
||||
"webpack": "4.29.6",
|
||||
"rollup": "^0.64.1",
|
||||
"rollup-plugin-babel": "^4.0.1",
|
||||
"rollup-plugin-babel-minify": "^7.0.0",
|
||||
|
@ -72,7 +68,11 @@
|
|||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||
"rollup-plugin-postcss": "^1.6.2",
|
||||
"rollup-plugin-url": "^1.4.0",
|
||||
"webpack": "4.29.6"
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"react-intl": "2.8.0",
|
||||
"prop-types": "15.7.2"
|
||||
},
|
||||
"files": [
|
||||
"dist/*",
|
||||
|
|
|
@ -24,21 +24,27 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"trayvon: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
"start": "rollup -c -w",
|
||||
"netlify": "echo \"Not configured yet\""
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||
"babel-eslint": "10.0.1",
|
||||
"eslint": "^5.16.0",
|
||||
"babel-jest": "24.7.1",
|
||||
"jest": "24.7.1",
|
||||
"@freesewing/components": "^2.0.0-beta.13",
|
||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||
|
@ -48,21 +54,11 @@
|
|||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||
"@freesewing/utils": "^2.0.0-beta.13",
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"@svgr/rollup": "^2.4.1",
|
||||
"babel-eslint": "10.0.1",
|
||||
"babel-jest": "24.7.1",
|
||||
"cross-env": "^5.1.4",
|
||||
"eslint": "^5.16.0",
|
||||
"gh-pages": "^1.2.0",
|
||||
"jest": "24.7.1",
|
||||
"prop-types": "15.7.2",
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"react-intl": "2.8.0",
|
||||
"react-scripts": "^3.0.0",
|
||||
"webpack": "4.29.6",
|
||||
"rollup": "^0.64.1",
|
||||
"rollup-plugin-babel": "^4.0.1",
|
||||
"rollup-plugin-babel-minify": "^7.0.0",
|
||||
|
@ -72,7 +68,11 @@
|
|||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||
"rollup-plugin-postcss": "^1.6.2",
|
||||
"rollup-plugin-url": "^1.4.0",
|
||||
"webpack": "4.29.6"
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"react-intl": "2.8.0",
|
||||
"prop-types": "15.7.2"
|
||||
},
|
||||
"files": [
|
||||
"dist/*",
|
||||
|
|
|
@ -24,21 +24,27 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"tutorial: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
"start": "rollup -c -w",
|
||||
"netlify": "echo \"Not configured yet\""
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||
"babel-eslint": "10.0.1",
|
||||
"eslint": "^5.16.0",
|
||||
"babel-jest": "24.7.1",
|
||||
"jest": "24.7.1",
|
||||
"@freesewing/components": "^2.0.0-beta.13",
|
||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||
|
@ -48,21 +54,11 @@
|
|||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||
"@freesewing/utils": "^2.0.0-beta.13",
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"@svgr/rollup": "^2.4.1",
|
||||
"babel-eslint": "10.0.1",
|
||||
"babel-jest": "24.7.1",
|
||||
"cross-env": "^5.1.4",
|
||||
"eslint": "^5.16.0",
|
||||
"gh-pages": "^1.2.0",
|
||||
"jest": "24.7.1",
|
||||
"prop-types": "15.7.2",
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"react-intl": "2.8.0",
|
||||
"react-scripts": "^3.0.0",
|
||||
"webpack": "4.29.6",
|
||||
"rollup": "^0.64.1",
|
||||
"rollup-plugin-babel": "^4.0.1",
|
||||
"rollup-plugin-babel-minify": "^7.0.0",
|
||||
|
@ -72,7 +68,11 @@
|
|||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||
"rollup-plugin-postcss": "^1.6.2",
|
||||
"rollup-plugin-url": "^1.4.0",
|
||||
"webpack": "4.29.6"
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"react-intl": "2.8.0",
|
||||
"prop-types": "15.7.2"
|
||||
},
|
||||
"files": [
|
||||
"dist/*",
|
||||
|
|
|
@ -21,13 +21,16 @@
|
|||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"build": "npm run clean && npm run nodebuild",
|
||||
"test": "echo \"utils: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
},
|
||||
"peerDependencies": {},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
|
@ -24,24 +24,30 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"build": "npm run clean && rollup -c",
|
||||
"test": "echo \"wahid: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"pubforce": "npm publish",
|
||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||
"start": "rollup -c -w"
|
||||
"start": "rollup -c -w",
|
||||
"netlify": "echo \"Not configured yet\""
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/brian": "^2.0.0-beta.12",
|
||||
"@freesewing/core": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-buttons": "^2.0.0-beta.12",
|
||||
"@freesewing/plugin-round": "^2.0.0-beta.12"
|
||||
"@freesewing/core": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-bundle": "^2.0.0-beta.13",
|
||||
"@freesewing/brian": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-round": "^2.0.0-beta.13"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||
"babel-eslint": "10.0.1",
|
||||
"eslint": "^5.16.0",
|
||||
"babel-jest": "24.7.1",
|
||||
"jest": "24.7.1",
|
||||
"@freesewing/components": "^2.0.0-beta.13",
|
||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||
|
@ -51,21 +57,11 @@
|
|||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||
"@freesewing/utils": "^2.0.0-beta.13",
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"@svgr/rollup": "^2.4.1",
|
||||
"babel-eslint": "10.0.1",
|
||||
"babel-jest": "24.7.1",
|
||||
"cross-env": "^5.1.4",
|
||||
"eslint": "^5.16.0",
|
||||
"gh-pages": "^1.2.0",
|
||||
"jest": "24.7.1",
|
||||
"prop-types": "15.7.2",
|
||||
"react": "^16.8",
|
||||
"react-dom": "^16.8",
|
||||
"react-intl": "2.8.0",
|
||||
"react-scripts": "^3.0.0",
|
||||
"webpack": "4.29.6",
|
||||
"rollup": "^0.64.1",
|
||||
"rollup-plugin-babel": "^4.0.1",
|
||||
"rollup-plugin-babel-minify": "^7.0.0",
|
||||
|
@ -75,7 +71,11 @@
|
|||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||
"rollup-plugin-postcss": "^1.6.2",
|
||||
"rollup-plugin-url": "^1.4.0",
|
||||
"webpack": "4.29.6"
|
||||
"@material-ui/core": "4.0.1",
|
||||
"@material-ui/icons": "4.0.1",
|
||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||
"react-intl": "2.8.0",
|
||||
"prop-types": "15.7.2"
|
||||
},
|
||||
"files": [
|
||||
"dist/*",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue