-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: vulnerabilites of rte extensions
- Loading branch information
1 parent
1495ddf
commit c72ae8a
Showing
18 changed files
with
12,293 additions
and
82,443 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,53 @@ | ||
{ | ||
"name": "contentstack-rte-plugin-boilerplate", | ||
"name": "@contentstack/rte-plugin-boilerplate", | ||
"version": "1.0.0", | ||
"description": "An initial boilerplate ", | ||
"description": "An initial boilerplate for creating a new RTE plugin", | ||
"entry": "plugin", | ||
"output": "plugin.system.js", | ||
"main": "dist/index.js", | ||
"main": "dist/plugin.system.js", | ||
"typings": "dist/types/plugin.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"build": "webpack", | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"start": "webpack-dev-server --mode development", | ||
"dev": "webpack --watch --mode development" | ||
"build": "webpack --config webpack.prod.js", | ||
"start": "webpack serve --config webpack.dev.js", | ||
"dev": "webpack --config webpack.dev.js" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/contentstack/rte-plugin-boilerplate.git" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^10.17.5", | ||
"@types/react": "^16.9.11", | ||
"css-loader": "^3.5.3", | ||
"prompt": "^1.0.0", | ||
"replace-in-file": "^3.4.2", | ||
"rimraf": "^2.6.2", | ||
"semantic-release": "^15.9.16", | ||
"shelljs": "^0.8.3", | ||
"css-loader": "^6.5.1", | ||
"source-map-loader": "^0.2.4", | ||
"style-loader": "^1.2.1", | ||
"travis-deploy-once": "^5.0.9", | ||
"ts-jest": "^23.10.2", | ||
"ts-loader": "^7.0.4", | ||
"ts-loader": "^9.2.6", | ||
"ts-node": "^7.0.1", | ||
"tslint": "^5.11.0", | ||
"tslint-config-prettier": "^1.15.0", | ||
"tslint-config-standard": "^8.0.1", | ||
"typedoc": "^0.12.0", | ||
"typedoc": "^0.22.11", | ||
"typescript": "^3.0.3", | ||
"webpack": "^4.43.0", | ||
"webpack-cli": "^3.3.11", | ||
"webpack-dev-server": "^3.11.0" | ||
"webpack": "^5.65.0", | ||
"webpack-cli": "^4.9.1", | ||
"webpack-dev-server": "^4.7.3", | ||
"webpack-merge": "^5.8.0" | ||
}, | ||
"dependencies": { | ||
"@contentstack/app-sdk": "^1.0.0", | ||
"@contentstack/venus-components": "^1.0.1", | ||
"@contentstack/venus-components": "^1.0.2", | ||
"@emotion/core": "^10.0.22", | ||
"react": "^16.11.0", | ||
"react-dom": "^16.13.1" | ||
}, | ||
"keywords": [], | ||
"author": "Ravi Lamkoti, Deepak Kharah", | ||
"keywords": [ | ||
"rte", | ||
"plugin", | ||
"boilerplate" | ||
], | ||
"author": "Contentstack", | ||
"license": "MIT" | ||
} |
Oops, something went wrong.