This repository has been archived by the owner on Jun 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 2.27 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
{
"name": "gitpushblog",
"version": "1.0.0",
"description": "a git based blog engine - (using nunjucks)",
"main": "index.js",
"scripts": {
"test": "node scripts/test.js",
"generate": "npm-run-all clean:dist build:dist webpack:dist",
"dev": "npm-run-all --parallel clean:dev webpack:dev build:dev",
"upload": "node scripts/upload.js",
"draft": "node scripts/newdraft.js",
"theme": "node scripts/newtheme.js",
"help": "node scripts/help.js",
"prepush": "npm run generate",
"push": "node scripts/push.js",
"push:only": "node scripts/push.js",
"build:dev": "node scripts/dev.js",
"build:dist": "node scripts/generate.js",
"webpack:dev": "webpack --env=dev --progress --colors --watch",
"webpack:dev-debug": "webpack --env=dev --progress --colors --watch --display-error-details",
"webpack:dist": "webpack --env=prod --progress --colors",
"clean:dev": "rimraf './dev/*'",
"clean:dist": "rimraf './dist/*'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geekodour/gitpushblog.git"
},
"author": "Hrishikesh Barman <Hrishikesh Barman> (https://geekodour.github.io/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/geekodour/gitpushblog/issues"
},
"homepage": "https://github.com/geekodour/gitpushblog#readme",
"dependencies": {
"async": "2.5.0",
"autoprefixer": "7.1.1",
"babel-cli": "6.24.1",
"babel-loader": "7.0.0",
"babel-preset-es2015": "6.24.1",
"bulma": "0.4.1",
"chalk": "1.1.3",
"chokidar": "1.7.0",
"clipboard": "1.7.1",
"cp": "0.2.0",
"css-loader": "0.28.2",
"dotenv": "4.0.0",
"extract-text-webpack-plugin": "2.1.0",
"github-blog-api": "1.1.12",
"inquirer": "3.1.1",
"js-yaml": "3.8.4",
"marked": "0.3.6",
"mkdirp": "0.5.1",
"ncp": "2.0.0",
"npm-run-all": "4.0.2",
"nunjucks": "3.0.0",
"ora": "1.2.0",
"postcss-loader": "2.0.5",
"postcss-smart-import": "0.7.2",
"precss": "1.4.0",
"primer-css": "8.0.0",
"pushstate-server": "3.0.0",
"rimraf": "2.6.1",
"sass-loader": "6.0.5",
"slug": "0.9.1",
"style-loader": "0.18.0",
"webpack": "2.6.0",
"yaml-front-matter": "^3.4.0"
},
"devDependencies": {
"file-loader": "0.11.2",
"url-loader": "0.5.9"
}
}