-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.63 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
{
"name": "readme-renderer",
"version": "1.0.0",
"author": "Dilipan Somasundaram",
"description": "A simple fun app to render git repositories Readme.md file contents as a standalone webpage.",
"repository": {
"type": "git",
"url": "https://github.com/tamdilip/readme-renderer"
},
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --inline --progress --colors",
"build": "cross-env NODE_ENV=production webpack",
"deploy": "gh-pages -d demo"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-preset-env": "^1.7.0",
"cross-env": "^6.0.0",
"css-hot-loader": "^1.4.4",
"css-loader": "^3.2.0",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1"
},
"dependencies": {
"bootstrap": "^4.4.1",
"jquery": "^3.5.0"
},
"keywords": [
"readme",
"github",
"render",
"webpack",
"css"
],
"license": "ISC"
}