2020-08-13 10:39:46 +00:00
|
|
|
{
|
|
|
|
"name": "documenteditor",
|
|
|
|
"private": true,
|
2022-03-19 15:12:08 +00:00
|
|
|
"version": "1.0.1",
|
2020-08-13 10:39:46 +00:00
|
|
|
"description": "DocumentEditor",
|
|
|
|
"repository": "",
|
|
|
|
"license": "UNLICENSED",
|
|
|
|
"scripts": {
|
|
|
|
"start": "npm run dev",
|
|
|
|
"dev": "cross-env NODE_ENV=development webpack-dev-server --config ./build/webpack.config.js",
|
|
|
|
"build-dev": "cross-env NODE_ENV=development node ./build/build.js",
|
|
|
|
"build-prod": "cross-env NODE_ENV=production node ./build/build.js",
|
2021-04-16 12:47:06 +00:00
|
|
|
"deploy-word": "cross-env TARGET_EDITOR=word NODE_ENV=production node ./build/build.js",
|
|
|
|
"deploy-cell": "cross-env TARGET_EDITOR=cell NODE_ENV=production node ./build/build.js",
|
|
|
|
"deploy-slide": "cross-env TARGET_EDITOR=slide NODE_ENV=production node ./build/build.js",
|
2021-08-24 09:40:37 +00:00
|
|
|
"postinstall1": "cpy ./node_modules/framework7-icons/fonts/*.* ./src/fonts/",
|
2020-11-25 20:16:45 +00:00
|
|
|
"build-word": "cross-env NODE_ENV=development node ./build/build.js",
|
2020-12-10 13:15:41 +00:00
|
|
|
"build-slide": "cross-env NODE_ENV=development TARGET_EDITOR=slide node ./build/build.js",
|
|
|
|
"build-cell": "cross-env NODE_ENV=development TARGET_EDITOR=cell node ./build/build.js"
|
2020-08-13 10:39:46 +00:00
|
|
|
},
|
|
|
|
"browserslist": [
|
|
|
|
"Android >= 7",
|
|
|
|
"IOS >= 11",
|
|
|
|
"Safari >= 11",
|
|
|
|
"Chrome >= 49",
|
|
|
|
"Firefox >= 31",
|
|
|
|
"Samsung >= 5"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
2021-01-24 21:30:49 +00:00
|
|
|
"dom7": "^3.0.0",
|
|
|
|
"framework7": "^6.0.4",
|
2020-08-13 10:39:46 +00:00
|
|
|
"framework7-icons": "^3.0.1",
|
2021-01-24 21:30:49 +00:00
|
|
|
"framework7-react": "^6.0.4",
|
2022-06-14 21:12:36 +00:00
|
|
|
"i18next": "^21.8.9",
|
|
|
|
"i18next-fetch-backend": "^5.0.0",
|
2022-04-15 13:57:00 +00:00
|
|
|
"postcss": "^8.4.12",
|
2020-08-13 10:39:46 +00:00
|
|
|
"prop-types": "^15.7.2",
|
2022-06-09 14:14:39 +00:00
|
|
|
"react": "^18.1.0",
|
|
|
|
"react-dom": "^18.1.0",
|
2021-01-24 21:30:49 +00:00
|
|
|
"react-i18next": "^11.8.5",
|
2022-06-14 21:12:36 +00:00
|
|
|
"swiper": "^8.2.4",
|
2020-08-13 10:39:46 +00:00
|
|
|
"template7": "^1.4.2"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-01-24 21:30:49 +00:00
|
|
|
"@babel/core": "^7.12.10",
|
|
|
|
"@babel/plugin-proposal-class-properties": "^7.12.1",
|
|
|
|
"@babel/plugin-proposal-decorators": "^7.12.12",
|
2020-08-13 10:39:46 +00:00
|
|
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
2021-01-24 21:30:49 +00:00
|
|
|
"@babel/plugin-transform-runtime": "^7.12.10",
|
|
|
|
"@babel/preset-env": "^7.12.11",
|
|
|
|
"@babel/preset-react": "^7.12.10",
|
|
|
|
"@babel/runtime": "^7.12.5",
|
|
|
|
"babel-loader": "^8.2.2",
|
2022-06-15 17:35:06 +00:00
|
|
|
"chalk": "^5.0.1",
|
2022-06-14 21:12:36 +00:00
|
|
|
"clean-webpack-plugin": "^4.0.0",
|
|
|
|
"copy-webpack-plugin": "^11.0.0",
|
|
|
|
"cpy-cli": "^4.1.0",
|
2021-01-24 21:30:49 +00:00
|
|
|
"cross-env": "^7.0.3",
|
2022-06-14 21:12:36 +00:00
|
|
|
"css-loader": "^6.7.1",
|
|
|
|
"css-minimizer-webpack-plugin": "^4.0.0",
|
2021-01-24 21:30:49 +00:00
|
|
|
"file-loader": "^6.2.0",
|
2021-03-22 08:42:10 +00:00
|
|
|
"html-webpack-plugin": "^5.3.1",
|
2022-06-14 21:12:36 +00:00
|
|
|
"less": "^4.1.3",
|
|
|
|
"less-loader": "^11.0.0",
|
|
|
|
"mini-css-extract-plugin": "^2.6.0",
|
2021-03-07 20:40:54 +00:00
|
|
|
"mobx": "^6.1.8",
|
|
|
|
"mobx-react": "^7.1.0",
|
2022-06-15 17:35:06 +00:00
|
|
|
"ora": "^6.1.0",
|
2022-06-14 21:12:36 +00:00
|
|
|
"postcss-loader": "^7.0.0",
|
|
|
|
"postcss-preset-env": "^7.7.1",
|
2020-08-13 10:39:46 +00:00
|
|
|
"rimraf": "^3.0.2",
|
2022-06-14 21:12:36 +00:00
|
|
|
"style-loader": "^3.3.1",
|
2021-06-03 12:41:28 +00:00
|
|
|
"terser-webpack-plugin": "^5.1.3",
|
2021-01-24 21:30:49 +00:00
|
|
|
"url-loader": "^4.1.1",
|
2021-06-03 12:41:28 +00:00
|
|
|
"webpack": "^5.38.1",
|
2021-03-22 08:42:10 +00:00
|
|
|
"webpack-cli": "^4.5.0",
|
2022-06-14 21:12:36 +00:00
|
|
|
"webpack-dev-server": "^4.9.2",
|
2021-03-22 08:42:10 +00:00
|
|
|
"workbox-webpack-plugin": "^6.1.2"
|
2022-03-19 22:08:02 +00:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
|
|
|
"fsevents": "~2.3.2"
|
2020-08-13 10:39:46 +00:00
|
|
|
}
|
|
|
|
}
|