-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.68 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": "cherry-doc",
"version": "1.0.21",
"description": "markdown to doc",
"main": "index.js",
"scripts": {
"dev": "rm -rf ./lib && babel ./src --out-dir ./lib --watch",
"test": "jest",
"example": "cd example && cherry dev",
"build": "rm -rf ./lib && babel ./src --out-dir ./lib",
"pub": "npm run build && git ci -am 'for publish' && npm version patch && npm publish"
},
"repository": "https://github.com/kokokele/cherry",
"keywords": [
"cherry",
"markdown",
"react-doc",
"md",
"marked",
"doc"
],
"bin": {
"cherry": "bin/cherry"
},
"author": "zhangpeng",
"license": "ISC",
"dependencies": {
"antd": "^2.9.1",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-plugin-import": "^1.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.0",
"express": "^4.15.2",
"highlight": "^0.2.4",
"highlight.js": "^9.11.0",
"history": "^4.6.1",
"less": "^2.7.2",
"less-loader": "^4.0.3",
"node-watch": "^0.5.4",
"pm2": "^2.4.5",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-hot-loader": "^3.0.0-beta.6",
"react-route": "^1.0.3",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"style-loader": "^0.16.1",
"walk": "^2.3.9",
"webpack": "^2.4.1",
"webpack-dev-middleware": "^1.10.2",
"webpack-hot-middleware": "^2.18.0",
"yaml-front-matter": "^3.4.0"
},
"devDependencies": {
"jest": "^19.0.2"
}
}