2018-08-21 05:02:21 +08:00
|
|
|
{
|
2018-08-23 15:26:48 +08:00
|
|
|
"name": "tiptap-packages",
|
|
|
|
"private": true,
|
|
|
|
"workspaces": [
|
|
|
|
"packages/*"
|
2018-08-22 04:40:55 +08:00
|
|
|
],
|
2018-08-21 05:02:21 +08:00
|
|
|
"scripts": {
|
2018-10-05 20:50:30 +08:00
|
|
|
"start": "node ./node_modules/@babel/node/bin/babel-node.js ./build/examples/server.js --env=development",
|
|
|
|
"build:packages": "node ./node_modules/@babel/node/bin/babel-node.js ./build/packages/build.js",
|
|
|
|
"build:examples": "node ./node_modules/@babel/node/bin/babel-node.js ./build/examples/build.js --env=production",
|
2018-11-16 18:56:52 +08:00
|
|
|
"release": "yarn build:packages && yarn lint && yarn test && lerna publish",
|
2018-10-13 22:45:22 +08:00
|
|
|
"lint": "eslint ./packages/**/src/**",
|
2018-11-10 06:01:23 +08:00
|
|
|
"test": "jest"
|
2018-08-21 05:02:21 +08:00
|
|
|
},
|
|
|
|
"postcss": {
|
|
|
|
"plugins": {
|
|
|
|
"autoprefixer": {}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"browserslist": [
|
|
|
|
"> 1%",
|
|
|
|
"last 2 versions",
|
|
|
|
"ie >= 9"
|
|
|
|
],
|
|
|
|
"devDependencies": {
|
2018-12-20 04:57:03 +08:00
|
|
|
"@babel/core": "^7.2.2",
|
|
|
|
"@babel/node": "^7.2.2",
|
2018-12-08 06:04:25 +08:00
|
|
|
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.2.0",
|
2019-01-19 15:56:21 +08:00
|
|
|
"@babel/polyfill": "^7.2.5",
|
2019-01-29 17:09:45 +08:00
|
|
|
"@babel/preset-env": "^7.3.1",
|
2018-09-04 05:12:18 +08:00
|
|
|
"@babel/preset-stage-2": "^7.0.0",
|
2019-01-29 17:09:45 +08:00
|
|
|
"@babel/runtime": "^7.3.1",
|
|
|
|
"autoprefixer": "^9.4.7",
|
2018-11-10 06:01:23 +08:00
|
|
|
"babel-core": "^7.0.0-bridge.0",
|
2018-09-29 19:24:27 +08:00
|
|
|
"babel-eslint": "^10.0.1",
|
2019-02-06 18:34:42 +08:00
|
|
|
"babel-jest": "^24.1.0",
|
2019-01-19 15:56:21 +08:00
|
|
|
"babel-loader": "^8.0.5",
|
2018-11-09 05:22:05 +08:00
|
|
|
"browser-sync": "^2.26.3",
|
2019-01-19 15:56:21 +08:00
|
|
|
"connect-history-api-fallback": "^1.6.0",
|
2018-11-09 05:22:05 +08:00
|
|
|
"copy-webpack-plugin": "^4.6.0",
|
2019-01-19 15:56:21 +08:00
|
|
|
"css-loader": "^2.1.0",
|
2019-02-06 18:34:42 +08:00
|
|
|
"eslint": "^5.13.0",
|
2018-08-21 05:02:21 +08:00
|
|
|
"eslint-config-airbnb-base": "^13.0.0",
|
2019-02-06 18:34:42 +08:00
|
|
|
"eslint-plugin-html": "^5.0.3",
|
|
|
|
"eslint-plugin-import": "^2.16.0",
|
2019-01-19 15:56:21 +08:00
|
|
|
"eslint-plugin-vue": "5.1.0",
|
|
|
|
"file-loader": "^3.0.1",
|
2019-02-06 18:34:42 +08:00
|
|
|
"fuse.js": "^3.3.1",
|
2018-09-04 05:12:18 +08:00
|
|
|
"glob": "^7.1.3",
|
2018-08-21 05:02:21 +08:00
|
|
|
"html-webpack-plugin": "^3.2.0",
|
2018-12-08 06:04:25 +08:00
|
|
|
"http-proxy-middleware": "^0.19.1",
|
2018-08-21 05:02:21 +08:00
|
|
|
"http-server": "^0.11.1",
|
2019-02-06 18:34:42 +08:00
|
|
|
"imagemin-webpack-plugin": "^2.4.1",
|
|
|
|
"jest": "^24.1.0",
|
|
|
|
"lerna": "^3.10.8",
|
2018-12-08 06:04:25 +08:00
|
|
|
"mini-css-extract-plugin": "^0.5.0",
|
2018-08-21 05:02:21 +08:00
|
|
|
"minimist": "^1.2.0",
|
2018-12-20 04:57:03 +08:00
|
|
|
"node-sass": "^4.11.0",
|
2018-09-04 05:12:18 +08:00
|
|
|
"optimize-css-assets-webpack-plugin": "^5.0.1",
|
2018-08-21 05:02:21 +08:00
|
|
|
"ora": "^3.0.0",
|
2019-01-29 17:09:45 +08:00
|
|
|
"postcss": "^7.0.14",
|
2018-08-21 05:02:21 +08:00
|
|
|
"postcss-loader": "^3.0.0",
|
|
|
|
"postcss-scss": "^2.0.0",
|
2018-12-08 06:04:25 +08:00
|
|
|
"regenerator-runtime": "^0.13.1",
|
2019-01-29 17:09:45 +08:00
|
|
|
"rollup": "^1.1.2",
|
|
|
|
"rollup-plugin-babel": "^4.3.2",
|
2018-11-09 05:22:05 +08:00
|
|
|
"rollup-plugin-commonjs": "^9.2.0",
|
2018-08-22 15:14:49 +08:00
|
|
|
"rollup-plugin-flow-no-whitespace": "^1.0.0",
|
2018-12-20 04:57:03 +08:00
|
|
|
"rollup-plugin-node-resolve": "^4.0.0",
|
2018-11-09 05:22:05 +08:00
|
|
|
"rollup-plugin-replace": "^2.1.0",
|
2019-02-06 18:34:42 +08:00
|
|
|
"rollup-plugin-vue": "^4.7.1",
|
2018-08-21 05:02:21 +08:00
|
|
|
"sass-loader": "^7.0.3",
|
2018-11-09 05:22:05 +08:00
|
|
|
"style-loader": "^0.23.1",
|
2019-01-19 15:56:21 +08:00
|
|
|
"tippy.js": "^3.4.1",
|
2018-09-04 05:12:18 +08:00
|
|
|
"uglify-js": "^3.4.9",
|
2019-02-06 18:34:42 +08:00
|
|
|
"vue": "^2.6.2",
|
2019-01-29 17:09:45 +08:00
|
|
|
"vue-loader": "^15.6.2",
|
2018-12-08 06:04:25 +08:00
|
|
|
"vue-router": "^3.0.2",
|
2018-08-21 05:02:21 +08:00
|
|
|
"vue-style-loader": "^4.1.0",
|
2019-02-06 18:34:42 +08:00
|
|
|
"vue-template-compiler": "^2.6.2",
|
|
|
|
"webpack": "^4.29.1",
|
2019-01-19 15:56:21 +08:00
|
|
|
"webpack-dev-middleware": "^3.5.1",
|
2018-11-09 05:22:05 +08:00
|
|
|
"webpack-hot-middleware": "^2.24.3",
|
2018-09-29 19:24:27 +08:00
|
|
|
"webpack-manifest-plugin": "^2.0.4",
|
2018-11-09 05:22:05 +08:00
|
|
|
"webpack-svgstore-plugin": "^4.1.0",
|
2018-08-22 15:14:49 +08:00
|
|
|
"zlib": "^1.0.5"
|
2018-09-25 14:37:39 +08:00
|
|
|
},
|
2018-11-16 18:54:34 +08:00
|
|
|
"dependencies": {}
|
2018-08-21 05:02:21 +08:00
|
|
|
}
|