-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 3.14 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
{
"name": "hungryturtlecode",
"version": "1.0.0",
"description": "This is the site that is available at [https://hungryturtlecode.com](https://hungryturtlecode.com)",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "concurrently \"yarn dev\" \"bundle exec jekyll serve --livereload --drafts\"",
"noreload": "concurrently \"yarn dev\" \"bundle exec jekyll serve --drafts\"",
"build": "cross-env NODE_ENV=production yarn webpack -- --env.env=prod",
"deploy": "rimraf _site && yarn build && cross-env JEKYLL_ENV=staging bundle exec jekyll build --config _config.prod.yml && yarn minihtml && firebase use staging && firebase deploy",
"deploy:prod": "rimraf _site && yarn build && cross-env JEKYLL_ENV=production bundle exec jekyll build --config _config.prod.yml && yarn minihtml && firebase use prod && firebase deploy",
"jekyll:build": "rimraf _site && cross-env JEKYLL_ENV=development bundle exec jekyll build",
"jekyll:prod": "rimraf _site && cross-env JEKYLL_ENV=production bundle exec jekyll build --config _config.prod.yml && yarn minihtml",
"webpack-defaults": "webpack-defaults",
"dev": "yarn webpack:watch -- --env.env=dev",
"dev:analyse": "yarn dev -- --env.addons=bundleanalyse",
"build:analyse": "yarn build -- --env.addons=bundleanalyse",
"build:buddy": "yarn build -- --env.addons=bundlebuddy",
"debug": "node --inspect --debug-brk ./node_modules/webpack/bin/webpack.js",
"webpack": "node ./node_modules/webpack/bin/webpack.js",
"webpack:watch": "yarn webpack -- -w",
"webpack-dev-server": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --port=9000 --hot",
"lint": "eslint js",
"minihtml": "find _site -iname *.html -type f -exec npx html-minifier --collapse-whitespace --remove-comments --remove-redundant-attributes --remove-script-type-attributes --remove-tag-whitespace --use-short-doctype {} -o {} ';'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adiman9/HungryTurtleCodeSite.git"
},
"author": "Adrian Henry",
"license": "ISC",
"bugs": {
"url": "https://github.com/adiman9/HungryTurtleCodeSite/issues"
},
"homepage": "https://github.com/adiman9/HungryTurtleCodeSite#readme",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.22.0",
"bundle-buddy-webpack-plugin": "^0.3.0",
"chalk": "^2.4.1",
"compression-webpack-plugin": "^1.1.11",
"concurrently": "^3.1.0",
"cross-env": "^5.2.0",
"eslint": "^5.0.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"extract-text-webpack-plugin": "^3.0.2",
"rimraf": "^2.6.3",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "3.x",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-merge": "^4.1.3"
},
"dependencies": {
"angular": "^1.6.5",
"angular-animate": "^1.6.5",
"angular-ui-router": "^0.4.2",
"html-minifier": "^3.5.21",
"videogular": "^1.4.4",
"videogular-controls": "^1.4.4",
"videogular-overlay-play": "^1.4.4",
"videogular-poster": "^1.4.4"
}
}