forked from galaxyproject/galaxy-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.82 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
{
"name": "galaxy-hub",
"version": "0.0.1",
"description": "Galaxy Community Hub",
"main": "build.js",
"license": "AFL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/galaxyproject/galaxy-hub.git"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.4.1",
"axios": "^0.18.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"bootstrap": "^4.1.3",
"concurrently": "^3.6.1",
"css-loader": "^1.0.0",
"file-loader": "^2.0.0",
"handlebars": "^4.0.6",
"highlight.js": "^9.12.0",
"jquery": "^3.3.1",
"jstransformer-pug": "^0.3.0",
"lodash": "^4.17.4",
"marked": "^0.5.0",
"metalsmith": "^2.3.0",
"metalsmith-autotoc": "^0.1.5",
"metalsmith-broken-link-checker": "^1.0.1",
"metalsmith-collections": "^0.9.0",
"metalsmith-filepath": "^1.0.1",
"metalsmith-headings-identifier": "0.0.11",
"metalsmith-layouts": "^2.1.0",
"metalsmith-markdown": "^0.2.1",
"metalsmith-metadata": "^0.0.4",
"metalsmith-serve": "^0.0.7",
"metalsmith-timer": "0.0.2",
"metalsmith-watch": "^1.0.3",
"minimist": "^1.1.1",
"moment": "^2.10.0",
"node-sass": "^4.9.3",
"popper.js": "^1.14.4",
"pug": "^2.0.0-beta6",
"sass-loader": "^7.1.0",
"slug": "^0.9.1",
"style-loader": "^0.22.1",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
},
"scripts": {
"build": "concurrently \"$npm_execpath run metalsmith\" \"webpack\"",
"metalsmith": "node build.js",
"serve": "concurrently \"$npm_execpath run webpack\" \"node build.js --serve\"",
"check": "node build.js --check",
"watch": "concurrently \"$npm_execpath run webpack --watch\" \"node build.js --watch\"",
"webpack": "webpack --config webpack.config.js"
},
"engines": {
"yarn": ">= 1.0.0"
}
}