forked from adsabs/bumblebee
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 3.13 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
{
"name": "bumblebee",
"version": "1.0.0",
"description": "Modern interface for http://ui.adslabs.org",
"homepage": "https://github.com/adsabs/bumblebee",
"repository": {
"type": "git",
"url": "git://github.com/adsabs/bumblebee.git"
},
"bugs": {
"url": "https://github.com/adsabs/bumblebee/issues"
},
"dependencies": {
"backbone": "^1.3.3",
"bootstrap-sass": "^3.3.7",
"dependo": "^0.2.0",
"file-saver": "^1.3.8",
"hotkeys-js": "^3.7.3",
"immutable": "^3.8.2",
"lint-staged": "^10.0.7",
"lodash": "^2.4.2",
"ncp": "^2.0.0",
"node-sass": "^4.13.0",
"prop-types": "^15.6.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.2.0",
"requirejs": "^2.3.5"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"async": "^2.5.0",
"axios": "^0.19.0",
"browserify": "^14.4.0",
"chai": "^4.2.0",
"chalk": "~0.4.0",
"compression": "^1.7.2",
"coveralls": "^2.13.1",
"es5-shim": "~4.5.10",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^1.7.0",
"eslint-plugin-requirejs": "^4.0.0",
"express": "^3.4.8",
"grunt": "~0.4.5",
"grunt-autoprefixer": "~0.2.20130806",
"grunt-babel": "^8.0.0",
"grunt-bbb-requirejs": "0.1.0-alpha.8",
"grunt-bower-task": "~0.4.0",
"grunt-build-control": "^0.7.1",
"grunt-concurrent": "^0.5.0",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-connect": "~0.6.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^0.8.0",
"grunt-contrib-htmlmin": "^3.0.0",
"grunt-contrib-imagemin": "^3.1.0",
"grunt-contrib-jshint": "~0.6.0",
"grunt-contrib-requirejs": "1.0.0",
"grunt-contrib-uglify-es": "^3.3.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-curl": "~2.2.0",
"grunt-env": "~0.4.1",
"grunt-exec": "~0.4.5",
"grunt-express-server": "~0.4.13",
"grunt-hash-required": "^0.1.5",
"grunt-include-bootstrap": "~0.1.1",
"grunt-processhtml": "~0.2.0",
"grunt-purifycss": "^0.1.1",
"grunt-sass": "^1.0.0",
"grunt-saucelabs": "~8.6.1",
"grunt-string-replace": "^1.2.0",
"http-proxy-middleware": "^0.18.0",
"husky": "^4.2.1",
"istanbul": "^0.4.5",
"jsonpath": "^0.2.12",
"load-grunt-config": "^0.19.2",
"mathjax": "^2.7.4",
"mocha": "^6.1.3",
"needle": "~0.7.1",
"nyc": "^11.2.1",
"phantomjs": "^2.1.7",
"prettier": "^1.19.1",
"puppeteer": "^1.14.0",
"react-bootstrap": "^0.32.1",
"redux": "^3.7.2",
"redux-thunk": "^2.3.0",
"reselect": "^3.0.1",
"sinon": "^7.3.1",
"time-grunt": "^1.4.0"
},
"peerDependencies": {
"grunt": "~0.4.5"
},
"scripts": {
"test": "grunt test coverage"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/{js,config}/**/*.js": "eslint --fix"
}
}