-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1005 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1005 Bytes
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
{
"name": "javascript-refresher",
"version": "1.1.0",
"description": "Overview of modern JavaScript constructs",
"author": "Sebastián González Montesinos",
"license": "CC BY-SA 4.0",
"scripts": {
"start": "webpack-dev-server --mode development --progress --open",
"build": "webpack --mode production",
"serve": "static dist"
},
"dependencies": {
"font-awesome": "^4.7.0",
"reveal.js": "^3.6.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"css-loader": "^6.7.2",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^5.5.0",
"node-sass": "^9.0.0",
"node-static": "^0.7.10",
"sass-loader": "^7.0.1",
"script-loader": "^0.7.2",
"style-loader": "^0.21.0",
"webpack": "^4.8.1",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^3.11.3"
}
}