-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.77 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
{
"name": "seventy",
"version": "1.3.1",
"description": "Blogging template for the 11ty.io static site generator.",
"scripts": {
"start": "npm-run-all --parallel dev:*",
"dev:del": "rimraf dist",
"dev:eleventy": "ELEVENTY_ENV=development eleventy --serve",
"dev:webpack": "webpack --config webpack.dev.js",
"build": "run-s prod:*",
"now-build": "run-s prod:*",
"prod:del": "rimraf build",
"prod:webpack": "webpack -p --config webpack.prod.js",
"prod:serve": "ELEVENTY_ENV=production eleventy --output=./build"
},
"repository": {
"type": "git",
"url": "git://github.com/planetoftheweb/seven.git"
},
"author": {
"name": "Ray Villalobos",
"email": "[email protected]",
"url": "https://raybo.org/"
},
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^0.8.3",
"@11ty/eleventy-navigation": "^0.1.4",
"@11ty/eleventy-plugin-rss": "^1.0.7",
"@11ty/eleventy-plugin-syntaxhighlight": "^2.0.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-async-generator-functions": "^7.8.3",
"@babel/plugin-proposal-json-strings": "^7.8.3",
"@babel/plugin-syntax-async-generators": "^7.8.4",
"@babel/plugin-syntax-json-strings": "^7.8.3",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
"@babel/plugin-transform-arrow-functions": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-block-scoped-functions": "^7.8.3",
"@babel/plugin-transform-block-scoping": "^7.8.3",
"@babel/plugin-transform-classes": "^7.8.3",
"@babel/plugin-transform-computed-properties": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"autoprefixer": "^9.7.4",
"babel-loader": "^8.0.6",
"babel-preset-es2015": "^6.24.1",
"clean-webpack-plugin": "^2.0.2",
"css-loader": "^2.1.1",
"eleventy-plugin-nesting-toc": "^1.1.0",
"express": "^4.17.1",
"luxon": "^1.21.3",
"markdown-it": "^8.4.1",
"markdown-it-anchor": "^5.2.5",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.13.0",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue-loader": "^15.8.3",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-middleware": "^3.7.2",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.12.0",
"animate.css": "^3.7.2",
"bootstrap": "^4.4.1",
"browser-sync-webpack-plugin": "^2.2.2",
"jquery": "^3.4.1",
"popper.js": "^1.16.0",
"vue": "^2.6.11"
}
}