Skip to content

Commit

Permalink
Merge playground package.json into root
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbenz committed Feb 7, 2019
1 parent 4e2e558 commit 172cf82
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 9,844 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ To build and deploy to the staging environment on [Google App Engine](https://cl
```sh
$ cd platform
$ npm run build:staging
$ npm run deploy
$ npm run deploy:staging
```

- - -
Expand Down
61 changes: 52 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,18 @@
"lint:grow": "cd platform && node lib/pipeline/growReferenceChecker.js",
"lint:node": "eslint \"**/*.js\" --ignore-path ./.gitignore",
"fix:node": "eslint \"**/*.js\" --fix --ignore-path ./.gitignore",
"build:playground": "cd playground && npm run build",
"build:boilerplate": "cd boilerplate && node build.js",
"build:local": "NODE_ENV=local build:site",
"build:playground": "cd playground && webpack --mode production --optimize-minimize --progress",
"build:site": "cd platform && node build.js",
"build:staging": "NODE_ENV=staging npm-run-all build:site build:boilerplate build:playground --aggregate-output --parallel",
"deploy": "gcloud app deploy --project=amp-dev-staging --quiet",
"deploy:staging": "gcloud app deploy --project=amp-dev-staging --quiet",
"log:staging": "gcloud app logs tail -s default --project amp-dev-staging",
"start:local": "cd platform && NODE_ENV=local node serve.js",
"start": "cd platform && NODE_ENV=staging node serve.js"
"start:playground": "cd playground && webpack-dev-server --mode development",
"start": "cd platform && NODE_ENV=staging node serve.js",
"test": "npm-run-all test:* --aggregate-output --parallel",
"test:playground": "cd playground && babel-node spec/run.js"
},
"keywords": [
"amphtml",
Expand All @@ -45,31 +48,71 @@
"signale": "^1.3.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "7.1.0",
"@octokit/rest": "^16.10.0",
"absolutify": "^0.1.0",
"amp-by-example": "^0.2.5",
"amp-toolbox-optimizer": "^0.4.6",
"amp-toolbox-runtime-version": "^0.2.3",
"babel-eslint": "^10.0.1",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.4",
"clean-css": "^4.2.1",
"http-proxy": "^1.17.0",
"http-proxy-response-rewrite": "0.0.1",
"got": "^9.5.0",
"clean-webpack-plugin": "^1.0.0",
"closure-webpack-plugin": "2.0.0-rc.17",
"codemirror": "5.40.2",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.0",
"del": "^3.0.0",
"eslint": "5.12.0",
"eslint-config-google": "0.11.0",
"file-loader": "3.0.1",
"google-closure-compiler": "20181231.0.0-webpack-beta",
"got": "^9.5.0",
"gulp": "^4.0.0",
"gulp-once": "^2.0.3",
"gulp-sass": "^4.0.2",
"gulp-strip-css-comments": "^2.0.0",
"handlebars": "^4.0.12",
"handlebars": "4.0.12",
"handlebars-loader": "1.7.0",
"handlebars-registrar": "^1.5.2",
"html-loader": "0.5.5",
"html-minifier": "^3.5.21",
"html-webpack-inline-source-plugin": "1.0.0-beta.2",
"html-webpack-plugin": "4.0.0-beta.4",
"http-proxy": "^1.17.0",
"http-proxy-response-rewrite": "0.0.1",
"jasmine": "^3.3.1",
"js-beautify": "1.8.6",
"keymaster": "1.6.2",
"mini-css-extract-plugin": "0.5.0",
"node-sass": "^4.11.0",
"npm-run-all": "^4.1.5",
"octonode": "^0.9.5",
"optimize-css-assets-webpack-plugin": "5.0.1",
"preload-webpack-plugin": "3.0.0-beta.3",
"rcs-core": "^2.4.5",
"recursive-search": "^1.0.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"through2": "^3.0.0",
"url-loader": "1.1.1",
"url-search-params": "1.1.0",
"wade": "0.3.3",
"webpack": "4.20.2",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.14",
"write": "^1.0.3",
"write-yaml": "^1.0.0"
}
},
"sideEffects": [
"./playground/src/request-idle-callback/base.js",
"./playground/src/service-worker/base.js",
"./playground/src/event-listener-options/base.js",
"*.css",
"*.scss"
]
}
Loading

0 comments on commit 172cf82

Please sign in to comment.