-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.92 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
{
"name": "@yansuan/tinymce-react",
"version": "1.0.0",
"description": "Official TinyMCE React Component no apiKey",
"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.tsx",
"test-manual": "bedrock -f src/test/ts/**/*Test.tsx",
"build": "npm 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": "npm run build"
},
"keywords": [],
"author": "Tiny Technologies",
"license": "Apache-2.0",
"dependencies": {
"prop-types": "^15.6.2"
},
"peerDependencies": {
"react": "^16.7.0",
"react-dom": "^16.7.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@ephox/agar": "^4.12",
"@ephox/bedrock": "^4.2.8",
"@ephox/mcagar": "^4.0.3",
"@ephox/tslint-rules": "^1.0.7",
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-console": "^1.1.1",
"@storybook/addon-info": "^5.2.0-alpha.30",
"@storybook/addon-notes": "^5.1.9",
"@storybook/react": "^5.1.9",
"@storybook/storybook-deployer": "^2.8.1",
"@types/node": "^10.12.19",
"@types/prop-types": "^15.5.8",
"@types/react": "^16.7.22",
"@types/react-dom": "^16.0.11",
"@types/storybook__addon-info": "^3.4.2",
"@types/storybook__react": "^4.0.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.0",
"core-js": "^2.6.3",
"raf": "^3.4.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"rimraf": "^2.6.3",
"tinymce": "^5.0.4",
"ts-loader": "^5.3.3",
"tslint": "^5.12.1",
"typescript": "^3.2.4",
"webpack": "^4.29.0"
}
}