-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 927 Bytes
/
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
{
"name": "gsheet-import",
"version": "1.0.0",
"main": "index.js",
"author": "pezzu <7243796+pezzu@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"clean": "tsc --build --clean",
"build": "tsc --project .",
"watch": "tsc --project . --watch --noEmit",
"start": "node ./dist/gsheet-import",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"dotenv": "^16.0.1",
"googleapis": "^105.0.0",
"nodemailer": "^6.7.7"
},
"devDependencies": {
"@swc/core": "^1.2.244",
"@swc/jest": "^0.2.22",
"@types/jest": "^28.1.6",
"@types/jsdom": "^20.0.0",
"@types/node": "^18.7.13",
"@types/nodemailer": "^6.4.4",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"jest": "^28.1.3",
"jsdom": "^20.0.0",
"mailslurp-client": "^15.14.0",
"typescript": "^4.7.4"
}
}