-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
77 lines (77 loc) · 3.05 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
{
"name": "trading-helper",
"version": "4.4.4",
"description": "",
"scripts": {
"glogin": "clasp login",
"glogout": "clasp logout",
"gcreate": "clasp create --title trading-helper --type standalone --rootDir ./apps-script",
"gedit": "clasp open -P ./apps-script",
"gopen": "clasp open -P ./apps-script --webapp",
"gpush": "npm run build && clasp push -P ./apps-script -f",
"gstart": "clasp push -P ./apps-script -w -f",
"gbuild": "tsc -noEmit --project ./ && node gas-build.js",
"start": "cross-env WEBDEV=1 parcel src/web/index.html --dist-dir ./apps-script",
"report": "parcel build src/web/index.tsx --dist-dir ./parcel-bundle-reports --reporter @parcel/reporter-bundle-analyzer",
"build": "cross-env LOG=DEBUG npm run gbuild && cross-env VERSION=$npm_package_version parcel build src/web/index.html --no-optimize --dist-dir ./apps-script",
"prod": "npm run gbuild && cross-env VERSION=$npm_package_version parcel build src/web/index.html --dist-dir ./apps-script --no-cache",
"lint": "eslint --fix --ext .ts,.tsx ./src",
"prepare": "husky install"
},
"devDependencies": {
"@google/clasp": "2.4.2",
"@parcel/reporter-bundle-analyzer": "2.11.0",
"@types/google-apps-script": "1.0.79",
"@types/google.script.client-side": "0.1.5",
"@typescript-eslint/eslint-plugin": "6.19.1",
"cross-env": "7.0.3",
"esbuild": "0.17.19",
"esbuild-gas-plugin": "0.8.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard-with-typescript": "43.0.1",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-googleappsscript": "1.0.5",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "9.0.6",
"parcel": "2.11.0",
"prettier": "3.2.4",
"process": "0.11.10",
"typescript": "5.3.3"
},
"author": "Bohdan Kovalov",
"license": "MIT",
"dependencies": {
"@emotion/react": "11.11.3",
"@emotion/styled": "11.11.0",
"@mui/icons-material": "5.15.6",
"@mui/material": "5.15.6",
"browser-or-node": "2.1.1",
"compare-versions": "6.1.0",
"react": "18.2.0",
"react-currency-format": "1.1.0",
"react-dom": "18.2.0",
"react-error-boundary": "4.0.12",
"react-progressbar-semicircle": "1.2.1",
"react-terminal": "1.4.4"
},
"overrides": {
"react-currency-format": {
"react": "$react",
"react-dom": "$react-dom"
},
"react-progressbar-semicircle": {
"react": "$react",
"react-dom": "$react-dom"
}
},
"optionalDependencies": {
"@parcel/watcher-linux-x64-glibc": "^2.4.2-alpha.0"
}
}