This repository has been archived by the owner on Jul 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.6 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
{
"name": "fireblog",
"description": "Personal blogging in elm using Firebase.",
"version": "1.0.0",
"license": "MIT",
"author": "Guillaume Hivert",
"repository": {
"type": "git",
"url": "https://github.com/ghivert/fireblog"
},
"scripts": {
"start": "webpack-dev-server --hot --config webpack.dev.js",
"build": "yarn compile-styles && BABEL_ENV=production webpack --config webpack.prod.js",
"styles": "modular-styles watch --source src/elm --dest src/elm/Styles --files src/styles --lang elm --bundlePath src",
"compile-styles": "modular-styles compile --source src/elm --dest src/elm/styles --files src/styles --lang elm --bundlePath src"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"babel-loader": "^8.0.6",
"babel-preset-minify": "^0.5.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.5",
"css-loader": "^3.2.1",
"elm": "^0.19.1-3",
"elm-hot-webpack-loader": "^1.1.6",
"elm-webpack-loader": "^6.0.1",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"modular-styles": "^0.1.1",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.7.0",
"purecss": "^1.0.1",
"style-loader": "^1.0.1",
"url-loader": "^3.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"firebase": "^7.5.2",
"hamburgers": "^1.1.3",
"highlight.js": "^9.16.2",
"normalize-css": "^2.3.1",
"pako": "^1.0.10"
}
}