f2a259ce66
• re-organize file structure with one directory per dialog • add index.html file per dialog • add bootstrap styling and dynamic cdn loading • clean up react code and stylesheet npm setup script update adds force flag "setup": "rm -f .clasp.json ..." Update README.md Move clasp to devDependencies update dynamic cdn urls Add repository field
84 lines
2.6 KiB
JSON
84 lines
2.6 KiB
JSON
{
|
|
"name": "react-google-apps-script",
|
|
"version": "1.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": "test",
|
|
"login": "clasp login",
|
|
"setup": "rm -f .clasp.json && clasp create --type sheets --title 'My React Project' --rootDir ./dist",
|
|
"setup:use-id": "clasp setting scriptId",
|
|
"build": "webpack --mode production",
|
|
"deploy": "npm run build && npx clasp push"
|
|
},
|
|
"keywords": [
|
|
"react",
|
|
"google",
|
|
"apps",
|
|
"script",
|
|
"sheets"
|
|
],
|
|
"author": "Elisha Nuchi",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=10.0.0",
|
|
"npm": ">=6.0.0"
|
|
},
|
|
"dependencies": {
|
|
"prop-types": "^15.7.2",
|
|
"react": "^16.13.0",
|
|
"react-bootstrap": "^1.0.1",
|
|
"react-dom": "^16.13.0",
|
|
"react-transition-group": "^4.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.8.4",
|
|
"@babel/core": "^7.8.7",
|
|
"@babel/plugin-proposal-class-properties": "^7.8.3",
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
|
|
"@babel/plugin-transform-object-assign": "^7.8.3",
|
|
"@babel/polyfill": "^7.8.7",
|
|
"@babel/preset-env": "^7.8.7",
|
|
"@babel/preset-react": "^7.8.3",
|
|
"@google/clasp": "^2.3.0",
|
|
"babel-eslint": "^10.1.0",
|
|
"babel-loader": "^8.0.6",
|
|
"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": "^5.1.1",
|
|
"css-loader": "^3.4.2",
|
|
"dynamic-cdn-webpack-plugin": "^5.0.0",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-airbnb-base": "^14.0.0",
|
|
"eslint-config-prettier": "^6.10.0",
|
|
"eslint-config-standard": "^14.1.0",
|
|
"eslint-loader": "^3.0.3",
|
|
"eslint-plugin-babel": "^5.3.0",
|
|
"eslint-plugin-googleappsscript": "^1.0.3",
|
|
"eslint-plugin-import": "^2.20.1",
|
|
"eslint-plugin-jsx-a11y": "^6.2.3",
|
|
"eslint-plugin-node": "^11.0.0",
|
|
"eslint-plugin-prettier": "^3.1.2",
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
"eslint-plugin-react": "^7.19.0",
|
|
"eslint-plugin-standard": "^4.0.1",
|
|
"gas-lib": "^2.0.3",
|
|
"gas-types-detailed": "^1.0.0",
|
|
"gas-webpack-plugin": "^1.0.2",
|
|
"html-webpack-inline-source-plugin": "0.0.10",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"module-to-cdn": "^3.1.5",
|
|
"prettier": "^1.19.1",
|
|
"style-loader": "^1.1.3",
|
|
"tern": "^0.24.3",
|
|
"terser-webpack-plugin": "^2.3.5",
|
|
"webpack": "^4.42.0",
|
|
"webpack-clean": "^1.2.3",
|
|
"webpack-cli": "^3.3.11"
|
|
}
|
|
}
|