-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (57 loc) · 1.52 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
{
"name": "sheets-mixpanel",
"version": "1.0.0",
"description": "integrate google sheets with mixpanel",
"main": "Code.gs",
"types": "./types/Types.d.ts",
"scripts": {
"login": "clasp login --creds creds.json",
"push": "clasp push --force",
"debug": "clasp run repl",
"web-view": "open -a 'Google Chrome.app' https://docs.google.com/spreadsheets/d/1AZ_tb_kMCUGaEMvBSSH4H53jc0H2Mf1QallzJ0kJ25A https://script.google.com/home/projects/1-e_9mTJFnWHvceBDod0OEkYP7B7fgfcxTYqggyoZGLyWOCfWvFge3hZO/executions https://cloudlogging.app.goo.gl/jYVp6DWFgcwhc2zb7",
"test-local": "node ./tests/all.test.js",
"test-server": "clasp run runTests",
"type-check": "tsc --noEmit --allowJs --checkJs Code.js",
"watch-debug": "npm-watch debug",
"watch-test-local": "npm-watch test-local",
"watch-push": "clasp push --watch --force",
"watch-serve": "./node_modules/serve/build/main.js ./ui"
},
"watch": {
"debug": {
"patterns": [
"./utilities/md5.js"
],
"quiet": true,
"silent": true,
"runOnChangeOnly": false
},
"test-local": {
"patterns": [
"*"
],
"quiet": true,
"silent": true,
"runOnChangeOnly": false
},
"build-types": {
"patterns": [
"./types/Types.js"
],
"quiet": true,
"silent": true,
"runOnChangeOnly": false
}
},
"author": "AK",
"license": "ISC",
"devDependencies": {
"@google/clasp": "^2.4.2",
"@types/google-apps-script": "^1.0.58",
"dotenv": "^16.0.3",
"nodemon": "^2.0.21",
"npm-watch": "^0.11.0",
"serve": "^14.2.0",
"typescript": "^5.0.2"
}
}