forked from Gus06/openath.github.io
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
84 lines (84 loc) · 2.72 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
{
"name": "opentrack-website-2018",
"version": "1.0.0",
"description": "Jekyll, Bootstrap4, Webpack4 website",
"main": "__src/entry.js",
"scripts": {
"precommit": "lint-staged",
"develop": "webpack-dev-server --config webpack.dev.js",
"buildold": "webpack --config webpack.prod.js",
"lint": "eslint",
"lint:staged": "lint-staged",
"clean": "shx rm -rf _site/ && shx rm -rf dist/",
"build": "npm run clean && cross-env NODE_ENV=production webpack -p --progress && bundle exec jekyll build",
"build:debug": "npm run clean && webpack --progress -d --verbose && bundle exec jekyll build -t",
"start": "npm run clean && concurrently -k -n \"WEBPACK,JEKYLL,BROWSER-SYNC\" -c \"bgBlue.bold,bgRed.bold,bgCyan.bold\" \"webpack -w --mode=development\" \"bundle exec jekyll build --watch\" \"browser-sync start -s _site -f _site --extensions html\""
},
"lint-staged": {
"*.{js,jsx,json}": [
"prettier --write",
"git add"
],
"*.{js,jsx}": [
"eslint --fix",
"git add"
],
"*.{md,scss,html}": [
"editorconfig-tools fix",
"git add"
]
},
"repository": "https://github.com/twobyte/openath.github.io",
"author": "Toby Trembath",
"license": "MIT",
"dependencies": {
"aos": "^2.3.2",
"bootstrap": "^4.1.3",
"jquery": "^3.3.1",
"octicons": "^7.3.0",
"popper.js": "^1.14.4"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.56",
"@babel/preset-env": "^7.0.0-beta.56",
"autoprefixer": "^8.5.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^8.0.0-beta.2",
"browser-sync": "^2.24.6",
"classnames": "^2.2.5",
"clean-webpack-plugin": "^0.1.19",
"concurrently": "^3.6.1",
"cross-env": "^5.1.5",
"css-loader": "^1.0.0",
"editorconfig-tools": "^0.1.1",
"eslint": "^5.3.0",
"eslint-config-airbnb": "17",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-webpack": "^0.10.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.8.2",
"exports-loader": "^0.7.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"imports-loader": "^0.8.0",
"lint-staged": "^7.2.2",
"node-sass": "^4.9.0",
"postcss": "^6.0.22",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.5",
"prettier": "^1.14.0",
"sass-loader": "^7.1.0",
"serviceworker-webpack-plugin": "^1.0.1",
"shx": "^0.2.2",
"style-loader": "^0.21.0",
"webpack": "^4.16.5",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.5",
"webpack-merge": "^4.1.4"
}
}