-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.43 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
{
"name": "we-edit",
"description": "an text editor",
"version": "3.0.0",
"author": {
"name": "Raymond Li",
"email": "[email protected]"
},
"dependencies": {
"cssstyle": "^0.2.36",
"docx4js": "https://github.com/lalalic/docx4js",
"mouse-event-offset": "^3.0.2",
"normalizr": "^2.2.1",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-redux": "^4.4.6",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"sax": "^1.2.1",
"ttfjs": "^0.4.0",
"word-wrapper": "^1.0.7"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-loader": "^6.3.2",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"binary-loader": "^0.0.1",
"jest": "^17.0.0",
"react-hot-loader": "^1.3.1",
"source-map-loader": "^0.1.6",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
},
"scripts": {
"compile": "babel src -d lib --source-maps inline",
"build.release": "webpack -p",
"build.debug": "webpack -d",
"test": "jest",
"dev": "webpack-dev-server --hot --inline -d --entry=./test.js"
},
"keywords": [],
"repository": {
"type": "git",
"url": ""
},
"engines": {
"node": ">= 0.4.4"
},
"readme": "README.md"
}