-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 3.1 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
76
77
78
79
80
81
82
83
84
85
86
{
"name": "causal-addon",
"version": "35.0.0",
"description": "Use ranges in Google Sheets.",
"scripts": {
"test": "test",
"clasp_login": "clasp login",
"setup": "clasp create --type sheets --title 'Causal' --rootDir ./dist",
"start": "NODE_ENV=development webpack --mode development --watch",
"build": "NODE_ENV=production webpack --mode production",
"build_dev": "NODE_ENV=development webpack --mode development",
"deploy_dev": "yarn build_dev && yarn clasp push",
"deploy": "yarn version --major --no-git-tag-version && yarn build && yarn clasp push && echo \"create the version using the UI\" # yarn clasp version \"new deploy\"",
"es5_check": "yarn es-check es5 src/server/code.js"
},
"author": "Causal",
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@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.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.9.0",
"@google/clasp": "^2.3.0",
"@material-ui/core": "^4.9.8",
"@material-ui/icons": "^4.9.1",
"@types/google-apps-script": "^1.0.11",
"@types/lodash": "^4.14.149",
"@types/numbro": "^1.9.3",
"@types/react": "^16.9.27",
"@types/react-dom": "^16.9.5",
"@types/recharts": "^1.8.9",
"babel-eslint": "^10.0.3",
"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",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^1.0.1",
"dynamic-cdn-webpack-plugin": "^5.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^2.10.0",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-googleappsscript": "^1.0.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.7.0",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-standard": "^3.1.0",
"file-saver": "^2.0.2",
"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",
"html2canvas": "^1.0.0-rc.5",
"immer": "^6.0.2",
"lodash": "^4.17.15",
"module-to-cdn": "^3.1.5",
"numbro": "^2.2.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-transition-group": "^4.3.0",
"recharts": "^1.8.5",
"style-loader": "^0.22.1",
"tern": "^0.24.3",
"tern-googleappsscript": "^1.0.2",
"terser-webpack-plugin": "^2.3.4",
"webpack": "^4.42.1",
"webpack-clean": "^1.2.3",
"webpack-cli": "^3.3.10"
},
"devDependencies": {
"es-check": "^5.1.0"
}
}