-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 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
{
"name": "react-google-appsscript-boilerplate",
"private": true,
"description": "Starter project to create multipage webapp with Google Apps Script using React, React-Router Vite, gas.",
"version": "0.0.1",
"type": "module",
"scripts": {
"prebuild": "node set-build-date.mjs",
"json-server": "npx json-server './data/db.json' --port 3001",
"build": "npm run prebuild && vite build",
"dev": "vite",
"publish": "vite build && clasp push",
"preview": "vite preview",
"clean:output": "rimraf ./dist",
"login": "clasp login",
"loginStatus": "clasp login --status",
"logout": "clasp logout",
"create": "node create-project.js",
"pull": "clasp pull",
"push": "clasp push --watch"
},
"dependencies": {
"date-fns": "^3.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"sweetalert2": "^11.14.4"
},
"devDependencies": {
"@google/clasp": "^2.4.1",
"@types/google-apps-script": "^1.0.55",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react": "^4.2.1",
"gas-client": "^1.1.1",
"gas-lib": "^2.0.4",
"gas-types-detailed": "^1.1.1",
"json-server": "^1.0.0-beta.0",
"react-bootstrap": "^2.5.0",
"react-icons": "^5.3.0",
"rimraf": "^3.0.2",
"vite": "^5.2.11",
"vite-plugin-singlefile": "^2.0.1"
}
}