-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"test": "tsc --module commonjs && jest dist/test/"
},
"dependencies": {
"@aws-sdk/client-sesv2": "^3.112.0",
"@google-cloud/datastore": "^6.6.2",
"@types/express": "^4.17.13",
"@types/luxon": "^2.3.2",
"@types/nodemailer": "^6.4.4",
"aes-cmac": "^1.0.3",
"express": "^4.18.1",
"luxon": "^2.4.0",
"nodemailer": "^6.7.5",
"struct-buffer": "^5.2.0",
"ts-datastore-orm": "^2.0.7",
"ts-jest": "^28.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/node": "^16.11.6",
"@typescript-eslint/parser": "^5.3.1",
"axios": "^0.23.0",
"concurrently": "^7.0.0",
"eslint": "^8.2.0",
"jest": "^28.1.0",
"mocha": "^9.1.3",
"nodemon": "^2.0.15",
"prettier": "^2.4.1",
"sinon": "^11.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
}
}