-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.13 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
78
79
80
81
82
83
84
85
86
87
88
{
"name": "feedback-survey-automation",
"description": "Automates the process of creating, sending, and storing feedback surveys for all projects created by Hack4Impact chapters",
"private": true,
"license": "MIT",
"homepage": "https://github.com/hack4impact/feedback-survey-automation#readme",
"repository": {
"type": "git",
"url": "https://github.com/hack4impact/feedback-survey-automation.git"
},
"bugs": {
"url": "https://github.com/hack4impact/feedback-survey-automation/issues"
},
"contributors": [
{
"name": "Yash Totale",
"url": "https://github.com/YashTotale"
},
{
"name": "Subha Das",
"url": "https://github.com/subatuba21"
}
],
"scripts": {
"make": "node out/script.js",
"make:ts": "ts-node src/script.ts",
"make:prod": "npm run make -- --dry-run=false",
"make:ts:prod": "npm run make:ts -- --dry-run=false",
"start": "concurrently \"npm:compile:watch\" -c \"blue.bold,green.bold\" --kill-others",
"compile": "tsc -p ./",
"compile:watch": "tsc -p ./ -w",
"preclasp": "ts-node scripts/pre-clasp.ts",
"clasp": "npm run clasp:push && npm run clasp:deploy",
"postclasp": "ts-node scripts/post-clasp.ts",
"clasp:push": "clasp push --force",
"clasp:deploy": "bash scripts/clasp-deploy.sh",
"clasp:watch": "clasp push -w",
"clasp:login": "clasp login",
"clasp:status": "clasp login --status",
"build": "npm run compile && npm run clasp",
"lint": "npx lint-check",
"lint:staged": "lint-staged",
"postinstall": "husky install && replace-in-file \"declare var console\" \"//declare var console\" node_modules/@types/google-apps-script/google-apps-script.base.d.ts",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"contributors:check": "all-contributors check",
"upload-logs": "ts-node scripts/upload-logs.ts",
"clean-up-stale-dry-runs": "ts-node scripts/clean-up-dry-runs.ts",
"clean-up-all-dry-runs": "ts-node scripts/clean-up-dry-runs.ts --all"
},
"dependencies": {
"@hack4impact/logger": "^3.0.0",
"airtable": "^0.10.1",
"dotenv-safe": "^8.2.0",
"googleapis": "^67.0.0",
"html-to-text": "^6.0.0",
"moment": "^2.29.1",
"node-fetch": "^2.6.1",
"nodemailer": "^6.4.17",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/airtable": "^0.8.1",
"@types/dotenv-safe": "^8.1.1",
"@types/google-apps-script": "^1.0.22",
"@types/html-to-text": "^6.0.0",
"@types/node-fetch": "^2.5.8",
"@types/nodemailer": "^6.4.0",
"@types/prettier": "^2.2.1",
"@types/recursive-readdir": "^2.2.0",
"@types/yargs": "^15.0.12",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"all-contributors-cli": "^6.19.0",
"clasp": "^1.0.0",
"concurrently": "^5.3.0",
"eslint": "^7.18.0",
"husky": "^5.1.3",
"lint-staged": "^10.5.3",
"markdownlint-cli": "^0.26.0",
"prettier": "^2.2.1",
"prettier-plugin-sh": "^0.6.0",
"recursive-readdir": "^2.2.2",
"replace-in-file": "^6.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}