-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.56 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.56 KB
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
{
"name": "mole-dashboard",
"version": "0.1.0",
"description": "Mole dashboard is a tool to view and explore all your logs stored in a mole server.",
"main": "index.html",
"scripts": {
"start": "node server.js",
"build": "./node_modules/.bin/webpack --config webpack.config.production.js",
"test": "mocha --compilers js:babel/register --recursive",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/molejs/mole-dashboard.git"
},
"keywords": [
"dashboard",
"tool",
"error",
"reporting",
"logs"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/molejs/mole-dashboard/issues"
},
"homepage": "https://github.com/molejs/mole-dashboard",
"dependencies": {
"es6-promise": "^3.0.2",
"isomorphic-fetch": "^2.1.1",
"less": "^2.5.1",
"less-loader": "^2.2.1",
"normalize.css": "^3.0.3",
"react": "^0.13.3",
"react-json-inspector": "^5.2.1",
"react-redux": "^0.9.0",
"react-router": "1.0.0-beta3",
"redux": "^1.0.1"
},
"devDependencies": {
"babel": "^5.8.21",
"babel-core": "^5.8.22",
"babel-loader": "^5.3.2",
"css-loader": "^0.17.0",
"debug": "^2.2.0",
"expect": "^1.9.0",
"fetch-mock": "^1.5.2",
"file-loader": "^0.8.4",
"jsdom": "<4.0.0",
"mocha": "^2.2.5",
"mocha-jsdom": "^1.0.0",
"node-fetch": "^1.3.2",
"react-hot-loader": "^1.2.8",
"sinon": "^1.16.1",
"style-loader": "^0.12.3",
"webpack": "^1.11.0",
"webpack-dev-server": "^1.10.1"
}
}