This repository has been archived by the owner on Sep 23, 2019. It is now read-only.
forked from apicollective/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.59 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
{
"name": "apibuilder.io-ui",
"version": "0.2.0",
"description": "API Builder UI",
"scripts": {
"build": "webpack --env=prod --progress --profile --colors",
"deploy": "DEPLOY=true webpack --env=prod",
"start": "webpack-dev-server --env=dev --progress --colors --profile",
"lint": "eslint src",
"format": "prettier --single-quote --trailing-comma=es5 --write src/*.js src/**/*.js src/**/*.jsx",
"lint:style": "stylelint \"src/**/*.css\"",
"lint:style:ci": "stylelint \"src/**/*.css\"",
"check": "yarn run format && yarn run test && yarn run flow && yarn run lint && yarn run lint:style",
"flow:cover": "flow coverage --color",
"flow:coverage": "flow-coverage-report -i 'src/**/*.js' -x 'src/**/*.test.js' -x 'src/generated/**/*' -t text",
"test": "jest --config=jest.config.json",
"test:watch": "jest --watch --config=jest.config.json",
"test:coverage": "jest --coverage --config=jest.config.json"
},
"repository": {
"type": "git",
"url": "https://github.com/movio/apidoc-ui"
},
"keywords": [
"movio",
"apidoc",
"apibuilder",
"api"
],
"contributors": [
{
"name": "Kalman Bekesi",
"url": "https://github.com/kalmanb"
}
],
"license": "MIT",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^19.0.0",
"babel-loader": "^7.0.0",
"babel-plugin-flow-react-proptypes": "^2.1.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-runtime": "^6.23.0",
"caniuse-db": "^1.0.30000664",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.1",
"cssnano": "^3.9.1",
"empty": "^0.10.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-prettier": "^1.7.0",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-loader": "^1.7.1",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"flow-bin": "^0.45.0",
"flow-coverage-report": "^0.3.0",
"html-webpack-plugin": "^2.28.0",
"http-server": "^0.10.0",
"identity-obj-proxy": "^3.0.0",
"istanbul-instrumenter-loader": "^2.0.0",
"jest": "^19.0.2",
"json-loader": "^0.5.4",
"postcss-cssnext": "^2.10.0",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.3.3",
"postcss-reporter": "^3.0.0",
"react-addons-test-utils": "^15.5.1",
"react-hot-loader": "3.0.0-beta.6",
"react-test-renderer": "^15.5.4",
"rucksack-css": "^0.9.1",
"style-loader": "^0.17.0",
"stylelint": "^7.10.1",
"uglify-js": "^2.8.22",
"uglifyjs-webpack-plugin": "^0.4.3",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.5",
"webpack-hot-middleware": "^2.18.0",
"webpack-md5-hash": "^0.0.5",
"webpack-s3-plugin": "^0.9.2"
},
"dependencies": {
"classnames": "^2.2.5",
"highlight.js": "^9.12.0",
"immutable": "^3.8.1",
"lodash": "^4.17.2",
"react": "^15.5.4",
"react-addons-css-transition-group": "^15.5.2",
"react-dom": "^15.5.4",
"react-lowlight": "^1.1.1",
"react-markdown": "^2.5.0",
"react-motion": "^0.5.0",
"react-redux": "^5.0.4",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"redux-saga": "^0.15.0",
"superagent": "^3.5.2"
}
}