forked from jrsdev2024/structor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.41 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
{
"name": "structor",
"version": "0.2.2",
"description": "A user interface builder for node.js Web applications with React UI",
"main": "structor.js",
"scripts": {
"build-server": "gulp --gulpfile ./build-conf/gulpfile.js build-server",
"build-server-dev": "gulp --gulpfile ./build-conf/gulpfile.js build-server-dev",
"build-client-less": "gulp --gulpfile ./build-conf/gulpfile.js build-client-less",
"build-client": "webpack --config ./build-conf/webpack.config.js --progress --colors",
"build-client-dev": "webpack --config ./build-conf/webpack-dev.config.js --progress --colors --watch"
},
"babel": {
"stage": 0,
"plugins": []
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipselon/structor.git"
},
"author": "Alexander Pustovalov",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ipselon/structor/issues"
},
"homepage": "https://github.com/ipselon/structor#readme",
"bin": {
"structor": "structor.js"
},
"engines": {
"node": ">=0.12.2"
},
"dependencies": {
"babel-core": "5.8.25",
"babel-plugin-react-transform": "1.1.1",
"body-parser": "1.14.0",
"escodegen": "1.7.0",
"esformatter": "0.8.1",
"esformatter-jsx": "4.0.6",
"esprima": "2.6.0",
"esprima-fb": "15001.1001.0-dev-harmony-fb",
"express": "4.13.3",
"express-urlrewrite": "1.2.0",
"fs-extra": "0.24.0",
"http-proxy": "1.11.2",
"immutable": "3.7.5",
"lodash": "3.10.1",
"minimist": "1.2.0",
"react-transform-hmr": "1.0.1",
"request": "2.63.0",
"socket.io": "1.3.7",
"tar-fs": "1.8.1",
"tar-stream": "1.3.0",
"webpack": "1.12.2",
"webpack-dev-middleware": "1.2.0",
"webpack-hot-middleware": "2.2.1"
},
"devDependencies": {
"babel-loader": "^5.3.2",
"css-loader": "^0.19.0",
"del": "^2.0.2",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.0.2",
"gulp-babel": "^5.2.1",
"gulp-less": "^3.0.3",
"gulp-uglify": "^1.4.1",
"gulp-watch": "^4.3.5",
"isomorphic-fetch": "^2.1.1",
"marked": "^0.3.5",
"react": "^0.14.3",
"react-bootstrap": "^0.28.1",
"react-dom": "^0.14.3",
"react-redux": "^3.1.0",
"react-widgets": "^3.1.0",
"redux": "^3.0.4",
"redux-thunk": "^1.0.0",
"style-loader": "^0.12.4",
"url-loader": "^0.5.6",
"validator": "^4.1.0"
}
}