-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.42 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
{
"name": "config-server-lite",
"version": "0.2.1",
"description": "A simple json configuration manager, intended to be used as a shared configuration safe in a multi-app environment.",
"main": "server",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"build-prod": "webpack -p --profile --json > stats.json",
"build-watch": "webpack --watch",
"build-docker": "npm run build-prod && docker build .",
"start-ui": "webpack-dev-server --watch --inline --port 3000",
"start": "node server/index.js"
},
"keywords": [
"configuration",
"centralized",
"consul"
],
"author": "Sukant Gujar",
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"compression": "^1.7.0",
"cors": "^2.8.4",
"express": "^4.15.4",
"express-graceful-exit": "^0.4.0",
"json-property-filter": "^1.2.0",
"jsondiffpatch": "^0.2.4",
"lodash": "^4.17.4",
"minimist": "^1.2.0",
"mongodb": "^2.2.31",
"redact-url": "^0.3.1"
},
"devDependencies": {
"axios": "^0.16.2",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"copy-to-clipboard": "^3.0.8",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.5",
"downloadjs": "^1.4.7",
"file-loader": "^1.1.5",
"font-awesome": "^4.7.0",
"html-webpack-plugin": "^2.30.1",
"lodash-webpack-plugin": "^0.11.4",
"material-ui": "^1.0.0-beta.16",
"material-ui-icons": "^1.0.0-alpha.19",
"promise-file-reader": "^1.0.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-dropzone": "^4.1.0",
"react-monaco-editor": "^0.10.0",
"react-redux": "^5.0.6",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"reapop": "^1.1.2",
"reapop-theme-wybo": "^0.4.1",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"style-loader": "^0.19.0",
"uglifyjs-webpack-plugin": "^1.0.0-beta.3",
"url-loader": "^0.6.2",
"webpack": "^3.5.4",
"webpack-dev-server": "^2.7.1"
}
}