-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
114 lines (114 loc) · 3.21 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "dockerfile-builder",
"version": "0.1.0",
"private": true,
"dependencies": {
"@cerebral/forms": "next",
"@cerebral/http": "next",
"@cerebral/router": "next",
"@cerebral/storage": "next",
"@cerebral/useragent": "next",
"@types/google-protobuf": "^3.2.7",
"ansi_up": "^2.0.2",
"babel-preset-react": "^6.24.1",
"blob-util": "^1.3.0",
"cerebral": "^2.2.0",
"classnames": "^2.2.5",
"codemirror": "^5.29.0",
"common-prefix": "^1.1.0",
"compressjs": "^1.0.3",
"font-awesome": "^4.7.0",
"function-tree": "next",
"gitignore-parser": "^0.0.2",
"google-protobuf": "^3.4.0",
"grpc-web-client": "^0.3.0",
"hedron": "^0.7.1",
"highlight.js": "^9.12.0",
"idx": "^1.5.0",
"js-logger": "^1.4.1",
"jszip": "^3.1.4",
"lodash": "^4.17.13",
"marksy": "^5.0.0",
"mimoza": "^1.0.0",
"moment": "^2.19.3",
"pako": "^1.0.5",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-addons-create-fragment": "^15.6.0",
"react-addons-perf": "^15.4.2",
"react-clipboard.js": "^1.1.2",
"react-dom": "^15.6.1",
"react-helmet": "^5.2.0",
"react-icons": "^2.2.5",
"react-if": "^2.2.1",
"react-loadable": "^4.0.5",
"react-s-alert": "^1.3.0",
"semantic-ui-css": "^2.2.12",
"semantic-ui-react": "^0.73.0",
"source-map-explorer": "^1.4.0",
"store2": "^2.5.3",
"storyboard": "^3.1.1",
"styled-components": "^2.1.2",
"ts-protoc-gen": "^0.4.0",
"uppy": "^0.18.0",
"uuid": "^3.1.0",
"whatwg-fetch": "^2.0.3",
"yeast": "^0.1.2",
"zlibjs": "^0.3.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-preset-flow": "^6.23.0",
"base64-loader": "^1.0.0",
"case-sensitive-paths-webpack-plugin": "^2.1.1",
"css-loader": "^0.28.7",
"eslint": "^4.18.2",
"eslint-config-prettier": "^2.4.0",
"flow-bin": "^0.54.1",
"flow-remove-types": "^1.2.1",
"husky": "^0.14.3",
"lint-staged": "^4.1.3",
"npm-run-all": "^4.1.1",
"offline-plugin": "^4.8.3",
"prettier": "^1.6.1",
"raw-loader": "^0.5.1",
"react-scripts": "^1.0.13",
"rimraf": "^2.6.1",
"shelljs": "^0.7.8",
"source-map-support": "^0.4.18",
"style-loader": "^0.18.2",
"why-did-you-update": "^0.0.8"
},
"scripts": {
"analyze": "source-map-explorer build/static/js/main.*",
"start": "react-scripts start",
"build": "react-scripts build",
"bundle": "npm-run-all clean:build build build:assets",
"build:assets": "node scripts/build_go_assets.js",
"build:proto": "./scripts/protogen.sh",
"clean:build": "rimraf build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"flow start": "flow start",
"flow stop": "flow stop",
"flow status": "flow status",
"flow coverage": "flow coverage",
"precommit": "lint-staged",
"deploy": "yarn run build && surge -p build -d dockerfile-builder.surge.sh"
},
"verbose": true,
"homepage": "https://dockerfile-builder.mybluemix.net/",
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"proxy": {
"/api": {
"target": "http://localhost:8088",
"ws": true
}
}
}