-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.68 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
{
"name": "agents-of-influence-az",
"version": "1.2.1",
"description": "Automation tasks, such as uploading and greyscaling photos, for agentsofinfluenceaz.com",
"main": "index.js",
"scripts": {
"lint": "eslint --fix src/**/*.ts",
"test": "jest",
"clean": "rimraf dist",
"webpack": "webpack -c webpack.config.js",
"build": "run-s test lint clean webpack",
"shell:clasp:push": "dotenv -- sh ./scripts/shell/clasp/push.sh",
"shell:utils:env_example": "dotenv -- sh ./scripts/shell/utils/env_example.sh",
"prettier:write:agents": "prettier --write src/data/agents.ts",
"uglifyjs:write:agents": "uglifyjs src/data/agents.ts",
"scripts:delete-headshots": "node dist/delete-headshots-s3.js",
"scripts:geneate-json": "node dist/generate-imgs-json.js",
"scripts:upload-aws": "node dist/upload-imgs-aws.js",
"scripts:write-disk": "node disk/write-imgs-to-disk.js",
"scripts:write-sheet": "node disk/write-values-to-sheet.js",
"push": "run-s build shell:clasp:push shell:utils:clasp_reset",
"prepare": "husky install"
},
"keywords": [
"gas",
"google-apps-script",
"clasp"
],
"author": "Robert Quinn",
"license": "MIT",
"devDependencies": {
"@aws-sdk/signature-v4-crt": "^3.299.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-syntax-throw-expressions": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@jest/globals": "^29.5.0",
"@types/axios": "^0.14.0",
"@types/google-apps-script": "^1.0.59",
"@types/jest": "^29.5.0",
"@types/mime": "^3.0.1",
"@types/sharp": "^0.31.1",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"aws-crt": "^1.15.13",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^11.0.0",
"dotenv-cli": "^7.1.0",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"file-loader": "^6.2.0",
"gas-webpack-plugin": "^2.3.0",
"generate-json-webpack-plugin": "^2.0.0",
"husky": "^8.0.0",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"npm-run-all": "^4.1.5",
"pako": "^2.1.0",
"prettier": "^2.8.7",
"request": "^2.88.2",
"rimraf": "^4.4.1",
"terser-webpack-plugin": "^5.3.7",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typescript": "^5.0.2",
"uglify-js": "^3.17.4",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.300.0",
"@google-cloud/local-auth": "^2.1.1",
"axios": "^1.3.4",
"googleapis": "^114.0.0",
"mime": "^3.0.0",
"sharp": "^0.32.0"
}
}