-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.33 KB
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
{
"name": "rlibro-editor",
"version": "1.0.0",
"description": "markdown editor for rlibro",
"main": "webpack.config.js",
"scripts": {
"start": "webpack-dev-server --content-base example/ --port 9000",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist && babel ./src -d dist --presets=react,es2015"
},
"keywords": [
"markdown",
"editor"
],
"author": "Byungdae Sohn (miconblog@gmail.com)",
"license": "MIT",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.10.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.9.1",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^2.12.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^5.1.1",
"extract-text-webpack-plugin": "^1.0.1",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.10.0",
"webpack-merge": "^0.14.0"
},
"dependencies": {
"lodash": "^4.13.1",
"marked": "^0.3.5",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2"
}
}