forked from enuchi/React-Google-Apps-Script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.43 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
{
"name": "react-google-apps-script",
"version": "1.0.0",
"description": "Starter project for using React with Google Apps Script",
"scripts": {
"test": "test",
"login": "clasp login",
"setup": "clasp create --type sheets --title 'My React Project' --rootDir ./dist",
"start": "webpack --mode development",
"build": "webpack --mode production",
"deploy": "npm run build && npx clasp push"
},
"keywords": [
"react",
"google",
"apps",
"script",
"sheets"
],
"author": "Elisha Nuchi",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@google/clasp": "^1.7.0",
"@types/google-apps-script": "0.0.26",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"clasp": "^1.0.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^1.0.1",
"eslint": "^5.16.0",
"eslint-config-google": "^0.9.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-googleappsscript": "^1.0.2",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-standard": "^3.1.0",
"gas-lib": "^2.0.3",
"gas-webpack-plugin": "^0.3.0",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-addons-css-transition-group": "^15.6.2",
"react-dom": "^16.8.6",
"react-transition-group": "^2.9.0",
"style-loader": "^0.22.1",
"tern": "^0.22.3",
"tern-googleappsscript": "^1.0.2",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.33.0",
"webpack-clean": "^1.2.3",
"webpack-cli": "^3.3.3"
}
}