-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.77 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@contentstack/rte-plugin-boilerplate",
"version": "1.0.0",
"description": "An initial boilerplate for creating a new RTE plugin",
"entry": "plugin",
"output": "plugin.system.js",
"main": "dist/plugin.system.js",
"typings": "dist/types/plugin.d.ts",
"files": [
"dist"
],
"scripts": {
"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/lodash": "^4.17.21",
"@types/node": "^10.17.5",
"@types/react": "^16.9.11",
"css-loader": "^6.5.1",
"source-map-loader": "^0.2.4",
"style-loader": "^1.2.1",
"ts-loader": "^9.5.4",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.22.11",
"typescript": "^4.5.5",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^5.2.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@babel/runtime": "^7.26.10",
"@contentstack/app-sdk": "^1.0.0",
"@contentstack/venus-components": "^3.0.2",
"@emotion/core": "^10.0.22",
"path-browserify": "^1.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-mentions": "^4.4.10",
"url": "^0.11.4"
},
"overrides": {
"@babel/runtime": "^7.26.10"
},
"keywords": [
"rte",
"plugin",
"boilerplate"
],
"author": "Contentstack",
"license": "MIT"
}