forked from microsoft/roosterjs-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.86 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
{
"name": "roosterjs-react",
"version": "0.0.72",
"description": "A react component wrapper for roosterjs with more plugins",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/roosterjs-react"
},
"scripts": {
"clean": "rimraf dist",
"tslint": "node node_modules/tslint/bin/tslint --project tools/tsconfig.tslint.json",
"normalize": "node tools/normalize-packages.js",
"build": "npm run clean & npm run normalize & npm run tslint & node tools/scss.js & node tools/build-all.js & npm run pack & npm run pack:prod & npm run dts",
"dts": "node tools/dts.js",
"start": "node tools/scss.js & webpack-dev-server --openPage sample/FocusOutShellSample.htm",
"start:basic": "node tools/scss.js & webpack-dev-server",
"pack": "node tools/pack.js & node tools/pack.js -amd",
"pack:prod": "node tools/pack.js -p & node tools/pack.js -amd -p",
"publish": "node tools/publish-all.js"
},
"author": "Jiuqing Song",
"contributors": [
{
"name": "Adrian Tran"
}
],
"license": "MIT",
"dependencies": {
"@microsoft/load-themed-styles": "^1.7.59",
"office-ui-fabric-react": "^7.53.0",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"roosterjs-editor-plugins": "^7.8.0",
"roosterjs-plugin-image-resize": "^7.8.0"
},
"devDependencies": {
"@types/node": "^12.11.1",
"@types/react": "^16.9.9",
"autoprefixer": "^7.1.1",
"classnames": "2.2.5",
"node-sass": "4.11.0",
"postcss-inline-rtl": "^0.9.8",
"postcss-modules": "1.1.0",
"rimraf": "2.6.2",
"toposort": "1.0.4",
"ts-loader": "5.3.3",
"tslint": "5.7.0",
"tslint-eslint-rules": "4.1.1",
"tslint-microsoft-contrib": "5.0.1",
"typescript": "3.2.2",
"url-loader": "1.1.2",
"webpack": "4.28.1",
"webpack-cli": "3.2.1",
"webpack-dev-server": "3.1.14"
}
}