89c12fa161
* initial e2e test setup with jest and puppeteer * Update package-lock.json * WIP e2e setup * finish setting up end to end tests * extend open addon time * build local version and change background color * update pink image snapshot * hide no "done" callback jest lint error * first draft of integration test CI automation * add .env file during CI * add puppeteer and update .env * try mac-os * try separate build step * add local deploy step * extend time * print body text * set user agent * rearrange console logs * remove console logs * console page * try loading in own window * install mkcert in CI * fix indentation * test local body text * bump time * revert to loading in add on * bump time * print page body * add stealth plugin and update puppeteer * update jest and jest-puppeteer versions to latest * use custom jest-puppeteer environment allows connecting to Google account using stealth plugin * update threshold * Update integration-tests.yaml * Update integration-tests.yaml * Update integration-tests.yaml * Update integration-tests.yaml * Update integration-tests.yaml * test console * switch to clasp 2.3.1 * increase timeout * Update integration-tests.yaml * Update integration-tests.yaml * Update package.json * try mac os 10.15 * Update integration-tests.yaml * run node 12,14 * Update global-teardown.js * Update integration-tests.yaml * Update integration-tests.yaml * Update integration-tests.yaml * sudo mkcert * Update integration-tests.yaml * try running not in bash * try windows 2016 * Update integration-tests.yaml * Update integration-tests.yaml * Update integration-tests.yaml * Update open-addon.js * Update open-addon.js * Update open-addon.js * Update open-addon.js * Update open-addon.js * Update integration-tests.yaml * Update integration-tests.yaml * Update integration-tests.yaml * add timeout * test recovery email * bypass account recovery page * Update integration-tests.yaml * Update integration-tests.yaml * Update integration-tests.yaml * test New-SelfSignedCertificate * Update integration-tests.yaml * Update integration-tests.yaml * Update integration-tests.yaml * Update integration-tests.yaml * Update integration-tests.yaml * Update integration-tests.yaml * Update integration-tests.yaml * add powershell script * Update integration-tests.yaml * Update integration-tests.yaml * Update integration-tests.yaml * Update integration-tests.yaml * Update integration-tests.yaml * Update integration-tests.yaml * Update integration-tests.yaml * Update integration-tests.yaml * Update integration-tests.yaml * Update integration-tests.yaml * test script * Update integration-tests.yaml * add generate-cert.ps1 * restructure test files * Update generate-cert.ps1 * bump failure threshold * fix install mkcert * remove consoles * Update package.json * Update integration-tests.yaml * try forceExit flag * test exec in global setup * restructure * Update integration-tests.yaml * remove ?. null check * add 4 OSs: macos-10.15, macos-latest, windows-2019, windows-latest * test mac 10.15 * Update integration-tests.yaml * use all OSs * -Keyexportpolicy Exportable * Update generate-cert.ps1 * Update integration-tests.yaml * update os * -KeyExportPolicy 'Exportable' * Update integration-tests.yaml * update test readme * Update integration-tests.yaml * add non-extended integration test * add non-extended snapshots * update snapshot names * change name * add basic integration tests pipeline file * Update local-development.test.js * update os's * test s3 image reporter * allowSizeMismatch: true * update test local url to localhost:3000/dialog-demo-bootstrap.html * try medium font render hinting * Update jest-puppeteer.config.js * update screenshots * check resolution * open page when wds is ready * change screen resolution * change to 2560 1440 resolution * test 790 width * change back to 800 * test all mac versions * rename container * skip s3 image reporting if missing env variables * try windows * add OS specific tests * fix image names * Update image-reporter.js * Update package.json * upload windows * Update image-reporter.js * test new font * try all OSs * remove OS-specific test setup * update extended snapshots * rename tests * Update integration-tests-extended.yaml * Update integration-tests-basic.yaml * extend timeout * Update jest.config.js * Update README.md * Update local-development.test.js * revert to 0.04 threshold * add comment * remove push trigger for basic test * extend timeout
108 lines
3.7 KiB
JSON
108 lines
3.7 KiB
JSON
{
|
|
"name": "react-google-apps-script",
|
|
"version": "2.0.0",
|
|
"description": "Starter project for using React with Google Apps Script",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/enuchi/React-Google-Apps-Script.git"
|
|
},
|
|
"scripts": {
|
|
"test:integration": "jest --forceExit test/local-development.test",
|
|
"test:integration:extended": "cross-env IS_EXTENDED=1 jest --forceExit test/local-development.test",
|
|
"login": "clasp login",
|
|
"setup": "rimraf .clasp.json && clasp create --type sheets --title \"My React Project\" --rootDir ./dist",
|
|
"open": "clasp open --addon",
|
|
"setup:https": "mkdirp certs && mkcert -key-file ./certs/key.pem -cert-file ./certs/cert.pem localhost 127.0.0.1",
|
|
"build:dev": "cross-env NODE_ENV=development webpack",
|
|
"build": "cross-env NODE_ENV=production webpack",
|
|
"deploy:dev": "rimraf dist && npm run build:dev && npx clasp push",
|
|
"deploy": "rimraf dist && npm run build && npx clasp push",
|
|
"serve": "cross-env NODE_ENV=development webpack-dev-server",
|
|
"start": "npm run deploy:dev && npm run serve"
|
|
},
|
|
"keywords": [
|
|
"react",
|
|
"google",
|
|
"apps",
|
|
"script",
|
|
"sheets"
|
|
],
|
|
"author": "Elisha Nuchi",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=10.0.0",
|
|
"npm": ">=6.0.0"
|
|
},
|
|
"dependencies": {
|
|
"gas-client": "^0.2.1",
|
|
"prop-types": "^15.7.2",
|
|
"react": "^17.0.2",
|
|
"react-bootstrap": "^1.3.0",
|
|
"react-dom": "^17.0.2",
|
|
"react-transition-group": "^4.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.10.5",
|
|
"@babel/core": "^7.11.1",
|
|
"@babel/plugin-proposal-class-properties": "^7.10.4",
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
|
|
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
|
|
"@babel/plugin-transform-object-assign": "^7.10.4",
|
|
"@babel/polyfill": "^7.10.4",
|
|
"@babel/preset-env": "^7.11.0",
|
|
"@babel/preset-react": "^7.10.4",
|
|
"@google/clasp": "^2.3.1",
|
|
"@types/expect-puppeteer": "^4.4.6",
|
|
"@types/jest-environment-puppeteer": "^4.4.1",
|
|
"@types/puppeteer": "^5.4.4",
|
|
"aws-sdk": "^2.1092.0",
|
|
"babel-eslint": "^10.1.0",
|
|
"babel-loader": "^8.1.0",
|
|
"babel-plugin-add-module-exports": "^1.0.2",
|
|
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
|
|
"babel-plugin-transform-es3-property-literals": "^6.22.0",
|
|
"copy-webpack-plugin": "^6.0.3",
|
|
"cross-env": "^7.0.2",
|
|
"css-loader": "^3.6.0",
|
|
"dotenv": "^8.2.0",
|
|
"dynamic-cdn-webpack-plugin": "^5.0.0",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-airbnb-base": "^14.2.0",
|
|
"eslint-config-prettier": "^6.11.0",
|
|
"eslint-config-standard": "^14.1.1",
|
|
"eslint-loader": "^3.0.4",
|
|
"eslint-plugin-babel": "^5.3.1",
|
|
"eslint-plugin-googleappsscript": "^1.0.3",
|
|
"eslint-plugin-import": "^2.22.0",
|
|
"eslint-plugin-jest": "^24.3.6",
|
|
"eslint-plugin-jsx-a11y": "^6.3.1",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
"eslint-plugin-react": "^7.20.5",
|
|
"eslint-plugin-standard": "^4.0.1",
|
|
"gas-lib": "^2.0.3",
|
|
"gas-types-detailed": "^1.0.0",
|
|
"gas-webpack-plugin": "^1.0.4",
|
|
"google-apps-script-webpack-dev-server": "^1.0.0",
|
|
"html-webpack-inline-source-plugin": "0.0.10",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"jest": "^27.5.1",
|
|
"jest-image-snapshot": "^4.5.1",
|
|
"mkdirp": "^1.0.4",
|
|
"module-to-cdn": "^3.1.5",
|
|
"prettier": "^1.19.1",
|
|
"puppeteer": "^13.4.1",
|
|
"puppeteer-extra": "^3.2.3",
|
|
"puppeteer-extra-plugin-stealth": "^2.9.0",
|
|
"rimraf": "^3.0.2",
|
|
"style-loader": "^1.2.1",
|
|
"tern": "^0.24.3",
|
|
"terser-webpack-plugin": "^2.3.7",
|
|
"ts-loader": "^8.0.2",
|
|
"webpack": "^4.44.1",
|
|
"webpack-cli": "^3.3.12",
|
|
"webpack-dev-server": "^3.11.0"
|
|
}
|
|
}
|