This repository has been archived by the owner on Feb 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.28 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
{
"name": "editor-react",
"version": "1.0.0",
"description": "Site editor based on react",
"main": "index.js",
"scripts": {
"test": "mocha --require babel-register --require babel-polyfill --exit",
"build": "webpack --config webpack.prod.js",
"dev": "webpack-dev-server --colors --progress --config webpack.dev.js",
"start": "webpack --watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MNITD/editor-react.git"
},
"keywords": [
"react",
"editor",
"constructor"
],
"author": "MNITD",
"license": "ISC",
"bugs": {
"url": "https://github.com/MNITD/editor-react/issues"
},
"homepage": "https://github.com/MNITD/editor-react#readme",
"devDependencies": {
"@storybook/addon-actions": "^4.0.0-alpha.3",
"@storybook/addon-links": "^4.0.0-alpha.3",
"@storybook/addons": "^4.0.0-alpha.3",
"@storybook/react": "^4.0.0-alpha.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.9",
"debug": "^3.1.0",
"eslint": "^4.19.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.2.0",
"mocha": "^5.0.5",
"node-sass": "^4.9.0",
"sass-loader": "^6.0.6",
"style-ext-html-webpack-plugin": "^3.4.7",
"style-loader": "^0.20.2",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1",
"webpack-merge": "^4.1.2",
"winston": "^2.4.1"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"lodash": "^4.17.5",
"mocha": "^5.0.5",
"most": "^1.7.3",
"prop-types": "^15.6.1",
"ramda": "^0.25.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"recompose": "^0.27.1",
"redux": "^3.7.2",
"redux-thunk": "^2.3.0",
"uuid": "^3.2.1"
}
}