-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.14 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "pipixia",
"version": "0.1.0",
"description": "Transform Markdown(and other static files with transformers) into a SPA website using React.",
"bin": {
"bisheng": "./bin/bisheng"
},
"files": [
"lib",
"bin",
"router.js",
"collect.js"
],
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf lib",
"prepublish": "npm run build && shx cp src/template.html lib/template.html",
"postpublish": "npm run clean"
},
"babel": {
"presets": [
"@babel/preset-react",
[
"@babel/preset-env",
{
"targets": {
"browsers": [
"last 2 versions",
"Firefox ESR",
"> 1%",
"ie >= 8",
"iOS >= 8",
"Android >= 4"
]
}
}
]
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-object-rest-spread"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/benjycui/bisheng.git"
},
"keywords": [
"markdown",
"spa",
"website",
"blog",
"react"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/benjycui/bisheng/issues"
},
"homepage": "https://github.com/benjycui/bisheng#readme",
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.3.1",
"babel-loader": "^8.0.0",
"babel-plugin-add-module-exports": "~0.2.1",
"case-sensitive-paths-webpack-plugin": "^2.0.0",
"commander": "^2.9.0",
"css-loader": "~2.1.0",
"exist.js": "^0.3.0",
"friendly-errors-webpack-plugin": "^1.6.1",
"gh-pages": "^1.0.0",
"history": "^3.3.0",
"jsonml-to-react-element": "^1.0.0",
"jsonml.js": "^0.1.0",
"less": "~3.9.0",
"less-loader": "~4.1.0",
"loader-utils": "^1.1.0",
"mark-twain": "^2.0.0",
"mini-css-extract-plugin": "^0.4.4",
"mkdirp": "^0.5.1",
"node-prismjs": "^0.1.0",
"nprogress-for-antd": "^0.2.0",
"nunjucks": "^2.5.2",
"postcss": "^7.0.6",
"postcss-loader": "~3.0.0",
"prismjs": "^1.4.1",
"ramda": "^0.26.0",
"react": "^16.0.0",
"react-dev-utils": "^4.1.0",
"react-dom": "^16.0.0",
"react-router": "^3.0.0",
"resolve": "^1.1.7",
"rucksack-css": "~1.0.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.1.0",
"ts-loader": "^5.3.0",
"url-loader": "~0.5.8",
"webpack": "^4.25.1",
"webpack-dev-server": "^3.1.10",
"webpackbar": "^3.1.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"postcss-svgo": "^2.1.6",
"rimraf": "^2.5.4",
"shx": "^0.2.2"
},
"engines": {
"node": ">=8.6.0"
}
}