-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
executable file
·63 lines (63 loc) · 2.36 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
{
"name": "reveal.js-webpack-kit",
"version": "2.0.3",
"description": "webpack-powered reveal.js presentations",
"main": "index.js",
"scripts": {
"publish": "git subtree push --prefix dist origin gh-pages",
"test": "echo \"Error: no test specified\" && exit 1",
"live-fa-css": "NODE_ENV=dev-server FONT_AWESOME='css' webpack-dev-server --open --mode development",
"live-fa-svg": "NODE_ENV=dev-server FONT_AWESOME='svg' webpack-dev-server --open --mode development",
"dev-fa-css": "NODE_ENV=development FONT_AWESOME='css' webpack --mode development",
"dev-fa-svg": "NODE_ENV=development FONT_AWESOME='svg' webpack --mode development",
"build-fa-css": "NODE_ENV=production FONT_AWESOME='css' webpack --mode production",
"build-fa-svg": "NODE_ENV=production FONT_AWESOME='svg' webpack --mode production",
"build-web": "NODE_ENV='production-web-css' FONT_AWESOME='css' webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gcalmettes/reveal.js-webpack-kit.git"
},
"keywords": [
"webpack",
"reveal.js"
],
"author": "Guillaume Calmettes",
"license": "ISC",
"bugs": {
"url": "https://github.com/gcalmettes/reveal.js-webpack-kit/issues"
},
"homepage": "https://github.com/gcalmettes/reveal.js-webpack-kit#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^1.0.1",
"file-loader": "^1.1.11",
"google-fonts-plugin": "2.0.2",
"html-webpack-include-assets-plugin": "^1.0.10",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.5",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.21.0",
"terser-webpack-plugin": "^1.3.0",
"webpack": "^4.35.2",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.9.0",
"@fortawesome/fontawesome-svg-core": "^1.2.19",
"@fortawesome/free-brands-svg-icons": "^5.9.0",
"@fortawesome/free-regular-svg-icons": "^5.9.0",
"@fortawesome/free-solid-svg-icons": "^5.9.0",
"highlight.js": "^9.15.8",
"reveal.js": "^3.8.0",
"reveal.js-menu": "^1.2.0",
"reveal_external": "^1.3.0",
"reveald3": "^1.5.4"
}
}