-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
111 lines (111 loc) · 3.33 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "yuppies",
"description": "f0rr0's blog (source)",
"version": "1.0.0",
"author": "Sid Jain <[email protected]>",
"bugs": {
"url": "https://github.com/f0rr0/yuppies/issues"
},
"dependencies": {
"chalk": "^1.1.3",
"cheerio": "^0.22.0",
"dotenv": "^2.0.0",
"excerpt-html": "^1.1.1",
"feed": "^0.3.0",
"front-matter": "^2.1.0",
"gatsby": "^0.12.10",
"gh-pages": "^0.11.0",
"highlight.js": "^9.7.0",
"inquirer": "^1.1.3",
"js-yaml": "^3.6.1",
"lodash.capitalize": "^4.2.1",
"lodash.kebabcase": "^4.1.1",
"lodash.sortby": "^4.7.0",
"lodash.uniqby": "^4.7.0",
"markdown-it": "8.4.1",
"markdown-it-anchor": "5.0.2",
"markdown-it-attrs": "2.2.0",
"markdown-it-emoji": "1.4.0",
"markdown-it-implicit-figures": "0.9.0",
"markdown-it-link-attributes": "2.1.0",
"markdown-it-video": "^0.6.3",
"md-yaml-json": "1.1.1",
"medium-sdk": "0.0.3",
"mkdirp": "^0.5.1",
"moment": "^2.14.1",
"open": "0.0.5",
"ora": "^0.3.0",
"postcss-browser-reporter": "^0.5.0",
"postcss-cssnext": "^2.8.0",
"postcss-import": "^8.1.2",
"postcss-loader": "^0.13.0",
"postcss-reporter": "^1.4.1",
"re-base": "^2.2.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-flip-move": "^2.4.2",
"react-helmet": "^3.1.0",
"react-progressive-image": "^0.1.2",
"react-router": "^2.8.1",
"react-share": "^1.10.0",
"react-timeago": "^3.1.3",
"reading-time": "^1.1.0",
"recursive-readdir": "^2.1.0",
"striptags": "^2.1.1",
"superb": "^1.3.0",
"svgo": "^0.7.0",
"toml": "^2.3.0",
"twemoji": "^2.2.0",
"underscore.string": "^3.3.4"
},
"homepage": "https://github.com/f0rr0/yuppies#readme",
"keywords": [
"yuppies",
"yuppi.es",
"f0rr0",
"sid",
"jain",
"siddharth",
"blog"
],
"license": "AGPL-3.0+",
"repository": {
"type": "git",
"url": "git+https://github.com/f0rr0/yuppies.git"
},
"scripts": {
"fix-css": "$(npm bin)/stylefmt -l $(ls ./src/css/*.css)",
"lint-css": "npm run fix-css; $(npm bin)/stylelint ./src/css/*.css",
"lint-js": "$(npm bin)/eslint --fix ./src/components/* ./src/loaders/* ./src/pages/*.js ./src/wrappers/* ./*.js",
"lint": "npm run lint-css; npm run lint-js",
"dev": "gatsby develop",
"clean": "rm -rf ./public",
"prebuild": " npm run clean && $(npm bin)/svgo -f ./icons -q",
"build": "gatsby build --prefix-links",
"deploy": "npm run prebuild && gatsby build --prefix-links && $(npm bin)/gh-pages -d public -b master",
"new": "$(npm bin)/babel-node ./src/scripts/new.js",
"medium": "$(npm bin)/babel-node ./src/scripts/medium.js ./pages/blog"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-eslint": "^6.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.2.2",
"stylefmt": "^4.3.1",
"stylelint": "^7.2.0",
"stylelint-config-standard": "^13.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}