-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
111 lines (111 loc) · 2.81 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
{
"name": "radar",
"version": "1.0.0",
"description": "Webinterface for Jet",
"main": "index.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack -p",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "standard && nyc mocha ./test/**/*.js",
"gh-pages-travis": "gh-pages-travis",
"dev": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "https://github.com/lipp/radar.git"
},
"keywords": [
"jet",
"radar",
"monitor"
],
"author": "Gerhard Preuss",
"license": "MIT",
"bugs": {
"url": "https://github.com/lipp/radar/issues"
},
"homepage": "https://github.com/lipp/radar",
"dependencies": {
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.6",
"clipboard": "^1.7.1",
"deep-equal": "^2.0.3",
"flat": "^2.0.1",
"lodash.throttle": "^4.1.1",
"md-components": "^11.1.0",
"moment": "^2.26.0",
"react": "^15.6.2",
"react-addons-css-transition-group": "^15.3.1",
"react-collapse": "^2.4.1",
"react-dom": "^15.6.2",
"react-height": "^2.2.1",
"react-redux": "^4.4.10",
"react-router-dom": "^4.3.1",
"redux": "^3.7.2",
"redux-jet": "2.3.2",
"redux-logger": "^2.10.2",
"redux-thunk": "^2.1.0",
"uuid": "^8.1.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^6.1.2",
"babel-istanbul": "^0.12.2",
"babel-loader": "^6.4.1",
"babel-plugin-__coverage__": "^0.111111.11",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.2.1",
"babel-preset-react": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^13.3.0",
"coveralls": "^2.13.3",
"cross-env": "^7.0.2",
"css-loader": "^0.27.3",
"envify": "^3.4.1",
"enzyme": "^2.9.1",
"express": "^4.17.1",
"file-loader": "^0.10.1",
"gh-pages-travis": "^1.0.0",
"handlebars": "^4.7.6",
"html-webpack-plugin": "^2.30.1",
"jsdom": "^9.12.0",
"mocha": "^2.5.3",
"node-sass": "^4.14.1",
"nyc": "^10.3.2",
"react-addons-test-utils": "^15.6.2",
"react-fastclick": "^2.1.2",
"sass-loader": "^6.0.7",
"selenium-download": "^2.0.1",
"selenium-webdriver": "^2.53.3",
"standard": "^7.1.2",
"standard-format": "^2.2.2",
"style-loader": "^0.13.2",
"uglify-js": "^2.8.29",
"url-loader": "^0.5.9",
"watchify": "^3.2.1",
"webpack": "^2.7.0",
"webpack-dev-server": "^3.11.0"
},
"nyc": {
"include": [
"src/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"require": [
"babel-register",
"./test/.setup.js"
],
"all": true
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"debug/"
]
}
}