mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-14 10:39:18 +08:00
98 lines
3.0 KiB
JSON
98 lines
3.0 KiB
JSON
{
|
|
"name": "tiptap-packages",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"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",
|
|
"release": "rm -Rf dist && yarn build:packages && yarn lint && yarn test && lerna publish",
|
|
"lint": "eslint --quiet ./packages/**/src/**",
|
|
"test": "jest",
|
|
"audit-ci": "audit-ci --critical"
|
|
},
|
|
"postcss": {
|
|
"plugins": {
|
|
"autoprefixer": {}
|
|
}
|
|
},
|
|
"browserslist": [
|
|
"> 1%",
|
|
"last 2 versions",
|
|
"not IE <= 11",
|
|
"not IE_Mob <= 11"
|
|
],
|
|
"devDependencies": {
|
|
"@babel/core": "^7.11.6",
|
|
"@babel/node": "^7.7.4",
|
|
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
|
|
"@babel/plugin-transform-runtime": "^7.11.5",
|
|
"@babel/preset-env": "^7.11.5",
|
|
"@babel/preset-stage-2": "^7.0.0",
|
|
"audit-ci": "^2.4.2",
|
|
"autoprefixer": "^9.7.3",
|
|
"babel-core": "^7.0.0-bridge.0",
|
|
"babel-eslint": "^10.0.3",
|
|
"babel-jest": "^24.9.0",
|
|
"babel-loader": "^8.0.6",
|
|
"browser-sync": "^2.26.7",
|
|
"connect-history-api-fallback": "^1.6.0",
|
|
"copy-webpack-plugin": "^5.0.5",
|
|
"css-loader": "^3.2.1",
|
|
"dart-sass": "^1.23.7",
|
|
"eslint": "^6.7.2",
|
|
"eslint-config-airbnb-base": "^14.0.0",
|
|
"eslint-plugin-html": "^6.0.0",
|
|
"eslint-plugin-import": "^2.18.2",
|
|
"eslint-plugin-vue": "6.0.1",
|
|
"file-loader": "^5.0.2",
|
|
"fuse.js": "^6.0.0",
|
|
"glob": "^7.1.6",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"http-proxy-middleware": "^0.20.0",
|
|
"http-server": "^0.12.0",
|
|
"identity-obj-proxy": "^3.0.0",
|
|
"imagemin-webpack-plugin": "^2.4.2",
|
|
"jest": "^24.9.0",
|
|
"lerna": "^3.19.0",
|
|
"mini-css-extract-plugin": "^0.8.0",
|
|
"minimist": "^1.2.0",
|
|
"mutation-observer": "^1.0.3",
|
|
"optimize-css-assets-webpack-plugin": "^5.0.4",
|
|
"ora": "^4.0.3",
|
|
"postcss": "^7.0.23",
|
|
"postcss-loader": "^3.0.0",
|
|
"postcss-scss": "^2.0.0",
|
|
"regenerator-runtime": "^0.13.3",
|
|
"rollup": "^1.27.8",
|
|
"rollup-plugin-babel": "^4.3.3",
|
|
"rollup-plugin-commonjs": "^10.1.0",
|
|
"rollup-plugin-css-only": "^1.0.0",
|
|
"rollup-plugin-flow-no-whitespace": "^1.0.0",
|
|
"rollup-plugin-node-resolve": "^5.2.0",
|
|
"rollup-plugin-replace": "^2.2.0",
|
|
"rollup-plugin-vue": "^5.1.4",
|
|
"sass-loader": "^8.0.0",
|
|
"style-loader": "^1.0.1",
|
|
"terser": "^4.4.2",
|
|
"tippy.js": "^6.1.0",
|
|
"vue": "^2.6.12",
|
|
"vue-loader": "^15.7.2",
|
|
"vue-router": "^3.4.3",
|
|
"vue-style-loader": "^4.1.0",
|
|
"vue-template-compiler": "^2.6.12",
|
|
"webpack": "^4.41.2",
|
|
"webpack-dev-middleware": "^3.7.1",
|
|
"webpack-hot-middleware": "^2.25.0",
|
|
"webpack-manifest-plugin": "^2.1.2",
|
|
"webpack-svgstore-plugin": "^4.1.0",
|
|
"zlib": "^1.0.5"
|
|
},
|
|
"dependencies": {
|
|
"socket.io-client": "^2.3.0",
|
|
"vue-github-button": "^1.2.0"
|
|
}
|
|
}
|