-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.04 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": "temando-open-api-ui",
"version": "1.0.0",
"private": true,
"description": "A Material Design themed Swagger renderer built with React.",
"main": "src/client/index.js",
"scripts": {
"build": "rm -rf dist/* && webpack",
"build:dist": "rm -rf dist/* && NODE_ENV=production webpack -p",
"dash": "webpack-dashboard -- npm start",
"start": "webpack-dev-server",
"test": "mocha --compilers js:babel-core/register --recursive"
},
"repository": {
"type": "git",
"url": "git@github.com:temando/open-api-ui.git"
},
"keywords": [
"ui"
],
"contributors": [
{
"name": "Florie Guibert",
"email": "florie.guibert@temando.com"
},
{
"name": "Brendan Abbot",
"email": "brendan.abbott@temando.com"
},
{
"name": "Khoa Tran",
"email": "khoa.tran@temando.com"
}
],
"license": "MIT",
"dependencies": {
"classnames": "^2.2.5",
"js-yaml": "^3.7.0",
"lodash": "^4.17.0",
"marked": "^0.3.6",
"query-string": "^4.3.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.1",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.6",
"react-syntax-highlighter": "^5.0.0",
"redux": "^3.6.0",
"redux-logger": "^3.0.0",
"redux-thunk": "^2.1.0",
"reselect": "^3.0.0",
"superagent": "^3.0.0"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-object-rest-spread": "^6.20.0",
"babel-preset-env": "^1.1.8",
"babel-preset-react": "^6.16.0",
"chai": "^3.5.0",
"css-loader": "^0.26.0",
"dirty-chai": "^1.2.2",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"file-loader": "^0.11.0",
"html-webpack-plugin": "^2.26.0",
"mocha": "^3.2.0",
"node-sass": "^4.2.0",
"react-dev-utils": "^0.5.0",
"redux-devtools": "^3.3.1",
"sass-loader": "^6.0.0",
"style-loader": "^0.14.0",
"webpack": "^2.2.0",
"webpack-dashboard": "^0.3.0",
"webpack-dev-server": "^2.2.1",
"webpack-merge": "^4.0.0"
}
}