forked from tinymce/tinymce-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.1 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@tinymce/tinymce-react",
"version": "3.8.3",
"description": "Official TinyMCE React Component",
"repository": {
"url": "https://github.com/tinymce/tinymce-react"
},
"files": [
"lib",
"README.md",
"CHANGELOG.md",
"LICENSE.txt"
],
"main": "lib/cjs/main/ts/index.js",
"module": "lib/es2015/main/ts/index.js",
"scripts": {
"lint": "tslint 'src/**/*.ts?(x)'",
"clean": "rimraf lib",
"test": "bedrock-auto -b chrome-headless -f src/test/ts/**/*Test.ts",
"test-manual": "bedrock -f src/test/ts/**/*Test.ts",
"build": "yarn run clean && tsc -p ./tsconfig.es2015.json && tsc -p ./tsconfig.cjs.json",
"watch": "tsc -w -p ./tsconfig.es2015.json",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"prepare": "yarn run build"
},
"keywords": [],
"author": "Tiny Technologies",
"license": "Apache-2.0",
"dependencies": {
"prop-types": "^15.6.2",
"tinymce": "https://github.com/amit-mnnit/tinymce#4.x"
},
"peerDependencies": {
"react": "^16.7.0",
"react-dom": "^16.7.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@ephox/agar": "^5.1.1",
"@ephox/bedrock-client": "^9.6.1",
"@ephox/bedrock-server": "^9.7.1",
"@ephox/mcagar": "^5.1.1",
"@ephox/sand": "^4.0.3",
"@ephox/sugar": "^7.0.3",
"@ephox/tslint-rules": "^1.0.7",
"@storybook/addon-info": "^5.3.21",
"@storybook/react": "^6.1.10",
"@storybook/storybook-deployer": "^2.8.6",
"@tinymce/miniature": "^3.0.1",
"@types/node": "^14.14.10",
"@types/prop-types": "^15.5.8",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/storybook__addon-info": "^5.2.3",
"@types/storybook__react": "^5.2.1",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.2.2",
"core-js": "^3.8.0",
"raf": "^3.4.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"rimraf": "^3.0.2",
"tinymce-4": "npm:tinymce@^4",
"tinymce-5": "npm:tinymce@^5",
"ts-loader": "^8.0.11",
"tslint": "^6.1.3",
"typescript": "^4.1.2",
"webpack": "^5.9.0"
}
}