-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.44 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
{
"name": "react-yoyo-editor",
"version": "0.0.1",
"description": "A visual drag-and-drop page builder base on React",
"main": "./lib/index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development node ./build/server.js",
"build": "cross-env NODE_ENV=production webpack --config build/webpack.prod.conf.js"
},
"author": "fireyy <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/fireyy/react-yoyo-editor.git"
},
"license": "WTFPL",
"dependencies": {
"invariant": "^2.2.1",
"lodash": "^4.17.4",
"prop-types": "^15.5.10",
"react-icons": "^2.2.5",
"styled-components": "^2.0.0"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.16.0",
"cross-env": "^3.1.3",
"css-loader": "^0.26.0",
"express": "^4.14.0",
"lodash-webpack-plugin": "^0.11.4",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.0",
"webpack-merge": "^0.14.1"
},
"peerDependencies": {
"react": "^15.3.2",
"react-dom": "^15.3.2"
}
}