-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 3.05 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
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "vit.to",
"version": "0.0.1",
"description": "A metalsmith based website of my personal homepage",
"main": "index.js",
"scripts": {
"prod": "npm run clean && cd frontend && ../node_modules/.bin/webpack --progress --profile --colors --env=prod && npm run pre-deploy",
"clean": "rm -rf frontend/build/* || true && rm -rf frontend/source/* || true && rm -rf frontend/assets/* || true",
"deploy": "git add dist/ && git commit -m 'Update contents' && git push origin --delete gh-pages && git subtree push --prefix dist origin gh-pages",
"go": "npm run prod && npm run deploy && git push",
"pre-deploy": "rm -rf dist/* && cp -a frontend/build/. dist/ && cp CNAME dist/.",
"serve": "cd frontend/build && python -m SimpleHTTPServer 8000",
"source": "cd frontend && mkdir source || true && cp -R assets/* source && cp -R ../posts/* source",
"twig": "cd frontend && node metalsmith.js",
"twig-no-drafts": "cd frontend && node metalsmith.js --show-drafts",
"dev": "npm run clean && cd frontend && ../node_modules/.bin/webpack --progress --profile --colors --env=dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vitto/vit.to.git"
},
"keywords": [
"static",
"website"
],
"author": "Vittorio <[email protected]> (http://vit.to/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/vitto/vit.to/issues"
},
"homepage": "https://github.com/vitto/vit.to#readme",
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"browser-sync": "^2.18.13",
"browser-sync-webpack-plugin": "^1.2.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^3.0.0",
"faker": "^4.1.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.29.0",
"imports-loader": "^0.7.1",
"metalsmith": "^2.3.0",
"metalsmith-beautify": "^0.2.0",
"metalsmith-collections": "^0.9.0",
"metalsmith-data": "^0.1.2",
"metalsmith-drafts": "0.0.1",
"metalsmith-excerpts": "^1.2.0",
"metalsmith-markdown": "^0.2.1",
"metalsmith-permalinks": "^0.5.0",
"metalsmith-robots": "^1.0.1",
"metalsmith-sitemap": "^1.2.0",
"metalsmith-twig": "^1.0.4",
"moment": "^2.18.1",
"node-sass": "^4.5.3",
"postcss-loader": "^1.3.3",
"sass-loader": "^6.0.6",
"standard": "^10.0.2",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.3.0",
"webpack-manifest-plugin": "^1.1.2",
"webpack-shell-plugin": "^0.5.0"
},
"dependencies": {
"@gen/random-text": "0.0.1",
"frontsize": "^4.0.3",
"gsap": "^2.1.3",
"handlebars": "^4.5.3",
"jquery": "^3.4.1",
"material-design-icons": "^3.0.1",
"three": "^0.96.0",
"typeface-exo-2": "0.0.54"
},
"standard": {
"globals": [
"$",
"Blazy",
"Cookies",
"emailjs",
"Headroom",
"noUiSlider",
"readingTime",
"timeago"
]
}
}