-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
53 lines (53 loc) · 1.54 KB
/
package.json
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
{
"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/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.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.22.11",
"typescript": "^3.0.3",
"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.2",
"@emotion/core": "^10.0.22",
"react": "^16.11.0",
"react-dom": "^16.13.1"
},
"keywords": [
"rte",
"plugin",
"boilerplate"
],
"author": "Contentstack",
"license": "MIT"
}