-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.34 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
{
"name": "dotnetsoutheast.github.io",
"version": "1.0.0",
"description": ".NET South East website",
"main": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "npm run build && gh-pages -t -d www -b gh-pages",
"clean": "rimraf www",
"inlinecriticalcss": "mv ./www/index.html ./www/index-orig.html && inline-critical --html ./www/index-orig.html --css ./www/assets/css/main.css > ./www/index.html",
"dev": "npm run clean && concurrently 'npm run jekyll:dev' 'npm run webpack:dev'",
"build": "npm run clean && npm run jekyll && npm run webpack && npm run inlinecriticalcss",
"jekyll": "cross-env JEKYLL_ENV=production jekyll build --config config.yml",
"jekyll:dev": "jekyll serve --config config.yml --trace --verbose",
"webpack": "cross-env NODE_ENV=production webpack --progress --config webpack.config.js",
"webpack:dev": "webpack --config webpack.config.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotnetsoutheast/dotnetsoutheast.github.io.git"
},
"author": "James Wragg <[email protected]> (http://jameswragg.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dotnetsoutheast/dotnetsoutheast.github.io/issues"
},
"homepage": "https://github.com/dotnetsoutheast/dotnetsoutheast.github.io#readme",
"devDependencies": {
"autoprefixer": "^7.1.4",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-runtime": "^6.26.0",
"concurrently": "^3.5.0",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"eslint": "^4.7.2",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"gh-pages": "^1.0.0",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"inline-critical": "^2.4.2",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"resolve-url-loader": "^2.1.0",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"uglifyjs-webpack-plugin": "^0.4.6",
"url-loader": "^0.5.9",
"webpack": "^3.6.0",
"webpack-svg-sprite-plugin": "^1.2.0"
},
"dependencies": {},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}