-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.87 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.87 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "exynize-ui",
"version": "0.8.1",
"description": "Exynize Platform UI",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist/",
"start": "npm run clean && node index.js",
"build": "NODE_ENV=production node build.js",
"build-docker": "docker build -t exynize-ui .",
"start-docker": "docker run -it --rm -p 80:3000 -e NODE_ENV=production --link exynize-rest:exynize-rest --name exynize-ui exynize-ui"
},
"repository": {
"type": "git",
"url": "[email protected]:Exynize/exynize-ui.git"
},
"author": "Tim Ermilov <[email protected]> (http://codezen.net)",
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://github.com/Exynize/exynize-ui",
"dependencies": {
"babel-polyfill": "^6.0.16",
"blueimp-md5": "^2.1.0",
"bootstrap": "^3.3.5",
"bootswatch": "^3.3.6",
"codemirror": "^5.8.0",
"esprima": "^2.7.0",
"estraverse": "^4.1.1",
"http-proxy-middleware": "^0.12.0",
"immutable": "^3.7.5",
"jwt-decode": "^1.4.0",
"lodash": "^4.5.1",
"moment": "^2.11.1",
"node-uuid": "^1.4.7",
"react": "^0.14.2",
"react-dom": "^0.14.2",
"react-json-tree": "^0.6.0",
"react-router": "^2.0.0",
"rx": "^4.0.6",
"semver": "^5.1.0",
"superagent": "^1.4.0",
"superagent-rx": "^0.3.0"
},
"devDependencies": {
"babel-core": "^6.1.2",
"babel-loader": "^6.0.1",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-typecheck": "^3.1.0",
"babel-preset-es2015": "^6.1.2",
"babel-preset-react": "^6.1.2",
"babel-preset-react-hmre": "^1.0.1",
"babel-preset-stage-1": "^6.1.2",
"css-loader": "^0.23.0",
"express": "^4.13.3",
"file-loader": "^0.8.4",
"json-loader": "^0.5.3",
"style-loader": "^0.13.0",
"url-loader": "^0.5.6",
"webpack": "^1.12.2",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.4.1"
}
}