-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.67 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
{
"name": "docker-ui",
"version": "0.0.1",
"description": "Web UI for managing docker images/containers/volumes",
"main": "index.js",
"scripts": {
"start": "nodemon .",
"watch": "node fuse.dev.js",
"build": "NODE_ENV=production node fuse.prod.js",
"postinstall": "node scripts/postinstall.js",
"prod": "NODE_ENV=production node .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/otothea/docker-ui"
},
"keywords": [
"docker",
"ui",
"manager",
"web",
"app"
],
"author": "OtotheA <oscar@otothea.com>",
"license": "MIT",
"dependencies": {
"ansi-to-react": "^6.1.6",
"body-parser": "1.17.2",
"cors": "^2.8.5",
"express": "4.15.3",
"express-session": "1.15.3",
"express-sslify": "1.2.0"
},
"devDependencies": {
"axios": "0.16.2",
"babel-core": "6.25.0",
"babel-plugin-react-transform": "2.0.2",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-polyfill": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-latest": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"bootstrap": "3.3.7",
"chart.js": "^2.9.4",
"fuse-box": "2.1.0",
"husky": "0.14.1",
"jest": "^23.6.0",
"jquery": "3.2.1",
"lodash": "4.17.4",
"mobx": "3.1.9",
"mobx-react": "4.1.8",
"mobx-react-devtools": "4.2.11",
"moment": "2.18.1",
"node-sass": "^5.0.0",
"nodemon": "1.11.0",
"react": "15.4.2",
"react-chartjs-2": "^2.6.4",
"react-dom": "15.4.2",
"react-router": "3.0.2",
"uglify-js": "3.0.19"
}
}