-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.43 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.43 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
{
"name": "gapi_util_wrapper",
"version": "1.0.4",
"description": "Dummy tinybuild app, for building. Replace description before publishing.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"start": "tinybuild",
"build": "tinybuild build",
"serve": "tinybuild serve",
"init": "node tinybuild/init.js",
"concurrent": "concurrently \"npm run python\" \"npm start\"",
"dev": "npm run pip && npm i --save-dev concurrently && npm i --save-dev nodemon && npm run concurrent",
"startdev": "nodemon --exec \"node tinybuild.js\" -e ejs,js,ts,jsx,tsx,css,html,jpg,png,scss,txt,csv",
"python": "python python/server.py",
"pip": "pip install quart && pip install websockets",
"pwa": "npm i workbox-cli && workbox generateSW node_server/pwa/workbox-config.js && npm run build && npm start",
"electron": "electron ./electron",
"android": "npx cap open android",
"ios": "npx cap open ios",
"tauri": "tauri"
},
"author": "",
"license": "",
"keywords": [
"esbuild"
],
"devDependencies": {
"@types/gapi": "^0.0.47",
"@types/gapi.auth2": "^0.0.61",
"@types/gapi.client": "^1.0.8",
"@types/gapi.client.calendar-v3": "^0.0.4",
"@types/gapi.client.drive-v3": "^0.0.5",
"@types/gapi.client.sheets-v4": "^0.0.4"
},
"nodemonConfig": {
"env": {
"NODEMON": true
},
"ignore": [
"dist/",
".temp/"
]
}
}