forked from enuchi/React-Google-Apps-Script
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.45 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.45 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
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
87
88
89
90
91
92
{
"name": "react-google-apps-script",
"version": "3.1.0",
"type": "module",
"description": "Starter project for developing React web apps with Google Apps Script.",
"scripts": {
"dev": "vite",
"lint": "eslint .",
"test:integration": "jest --forceExit test/local-development.test",
"test:integration:extended": "cross-env IS_EXTENDED=true jest --forceExit test/local-development.test",
"test:integration:extended:ci-reporter": "cross-env IS_EXTENDED=true jest --forceExit || node test/utils/image-reporter-standalone.js",
"login": "pnpm exec clasp login",
"setup": "rimraf .clasp.json && mkdirp dist && pnpm exec clasp create --type webapp --title \"RGAS 3.1.0\" --rootDir ./dist && mv ./dist/.clasp.json ./.clasp.json && rimraf dist",
"open": "pnpm exec clasp open-web-app $(jq -r .deploymentId .clasp.json)",
"push": "pnpm exec clasp push",
"setup:https": "mkdirp certs && mkcert -key-file ./certs/key.pem -cert-file ./certs/cert.pem localhost 127.0.0.1",
"build:dev": "tsc && vite build --mode development",
"build": "tsc && vite build --mode production",
"deploy:dev": "pnpm run build:dev && pnpm run push && pnpm exec clasp deploy --description \"D$(date +%y%m%d_%H%M)\" --deploymentId $(jq -r .deploymentId .clasp.json)",
"deploy": "pnpm run build && pnpm run push && pnpm exec clasp deploy --description \"R$(date +%y%m%d_%H%M)\" --deploymentId $(jq -r .deploymentId .clasp.json)",
"start": "pnpm run deploy:dev && pnpm run dev"
},
"keywords": [
"react",
"google",
"apps",
"script",
"sheets"
],
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/material": "^5.11.11",
"gas-client": "^1.2.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-bootstrap": "^2.4.0",
"react-dom": "^18.2.0",
"react-transition-group": "^4.4.2"
},
"devDependencies": {
"@babel/preset-env": "^7.24.6",
"@google/clasp": "3.1.3",
"@types/expect-puppeteer": "^5.0.6",
"@types/jest-environment-puppeteer": "^5.0.2",
"@types/node": "^20.11.30",
"@types/prop-types": "^15.7.15",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"@vitejs/plugin-react-swc": "^3.11.0",
"autoprefixer": "^10.4.19",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-googleappsscript": "^1.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"gas-types-detailed": "^1.1.2",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-image-snapshot": "^6.5.1",
"mkdirp": "^3.0.1",
"postcss": "^8.4.38",
"postcss-preset-env": "^9.5.4",
"prettier": "^2.7.0",
"puppeteer": "^24.16.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"rollup": "^4.18.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.9.2",
"vite": "^6.4.1",
"vite-plugin-singlefile": "^2.3.0",
"vite-plugin-static-copy": "^2.3.2"
},
"pnpm": {
"overrides": {
"jws": "4.0.1",
"@modelcontextprotocol/sdk": "1.24.0",
"glob": "10.5.0",
"tar-fs": "3.1.1"
}
}
}