forked from ipfs/ipfs-webui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.53 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
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "ipfs-webui",
"version": "0.3.0",
"description": "A frontend for IPFS",
"browser": {
"stream": "readable-stream"
},
"dependencies": {
"bl": "^1.1.2",
"bootstrap": "^3.3.7",
"create-react-class": "^15.5.2",
"d3": "^4.7.4",
"fbjs": "^0.8.12",
"font-awesome": "^4.7.0",
"i18next": "^7.2.1",
"i18next-browser-languagedetector": "^1.0.1",
"i18next-localstorage-cache": "^1.1.0",
"i18next-sprintf-postprocessor": "^0.2.2",
"i18next-xhr-backend": "^1.4.1",
"ipfs-api": "^14.0.0",
"ipfs-geoip": "^2.2.0",
"is-binary": "^0.1.0",
"lodash-es": "^4.6.1",
"multiaddr": "^2.3.0",
"prettysize": "^0.1.0",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-bootstrap": "^0.30.8",
"react-contextmenu": "^2.4.0",
"react-dnd": "^2.3.0",
"react-dnd-html5-backend": "^2.3.0",
"react-dom": "^15.5.4",
"react-html5video": "^2.0.1",
"react-redux": "^5.0.4",
"react-redux-toastr": "^6.2.4",
"react-router": "3.0.2",
"react-router-bootstrap": "^0.23.1",
"react-router-redux": "^4.0.0",
"react-syntax-highlighter": "^5.3.0",
"readable-stream": "^2.2.9",
"redux": "^3.3.1",
"redux-saga": "^0.14.6",
"safe-buffer": "^5.0.1",
"three": "^0.84.0"
},
"devDependencies": {
"autoprefixer": "^6.7.1",
"babel": "^6.5.2",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-loader": "^6.2.10",
"babel-plugin-transform-react-display-name": "^6.22.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.22.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"cheerio": "^0.22.0",
"classnames": "^2.2.5",
"css-loader": "^0.28.0",
"debug": "^2.6.0",
"enzyme": "^2.8.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.0",
"eslint-config-standard-react": "^4.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^3.0.1",
"exports-loader": "^0.6.3",
"file-loader": "^0.11.1",
"hjs-webpack": "^9.1.0",
"https-browserify": "^1.0.0",
"imports-loader": "^0.7.1",
"json-loader": "^0.5.4",
"karma": "^1.6.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"less": "^2.7.2",
"less-loader": "^4.0.3",
"mocha": "^3.2.0",
"postcss-loader": "^1.2.2",
"pre-commit": "^1.2.2",
"react-addons-test-utils": "^15.5.1",
"react-test-renderer": "^15.5.4",
"redux-logger": "^3.0.1",
"stream-http": "^2.7.0",
"style-loader": "^0.16.1",
"url-loader": "^0.5.7",
"webpack": "^2.3.3"
},
"scripts": {
"test": "karma start --single-run=true karma.conf.js",
"start": "hjs-dev-server",
"lint": "eslint .",
"build": "NODE_ENV=production webpack"
},
"pre-commit": [
"lint"
],
"author": "Juan Benet <juan@benet.ai> (http://juan.benet.ai/)",
"repository": {
"type": "git",
"url": "https://github.com/ipfs/webui"
},
"keywords": [
"ipfs",
"webui",
"webkit"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs/webui/issues"
},
"homepage": "https://github.com/ipfs/webui",
"engines": {
"node": ">=4.0.0"
}
}