forked from enuchi/React-Google-Apps-Script
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.67 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.67 KB
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
{
"name": "typescript-react-google-apps-script",
"version": "1.0.0",
"description": "Starter project for Google Apps Script using TypeScript and React",
"scripts": {
"test": "test",
"login:clasp": "npx clasp login",
"start": "webpack --mode development",
"build": "webpack --mode production",
"deploy:stage": "yarn run build && npx clasp push",
"deploy:prod": "NODE_ENV=production yarn run build && npx clasp push"
},
"keywords": [
"typescript",
"react",
"sass",
"scss",
"webpack",
"google",
"apps",
"script",
"sheets"
],
"author": "Danny Hinshaw",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@google/clasp": "^1.7.0",
"@types/google-apps-script": "0.0.28",
"@types/node": "^11.9.5",
"@types/react": "^16.8.5",
"@types/react-dom": "^16.8.2",
"awesome-typescript-loader": "^5.2.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^5.0.0",
"css-loader": "^2.1.0",
"gas-lib": "^2.0.2",
"gas-webpack-plugin": "^1.0.2",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.11.0",
"prettier": "^1.16.4",
"prop-types": "^15.7.2",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"tern": "^0.23.0",
"tern-googleappsscript": "^1.0.2",
"terser-webpack-plugin": "^1.2.3",
"tslint": "^5.13.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^3.6.0",
"tslint-webpack-plugin": "^2.0.2",
"typescript": "^3.3.3333",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
}
}