-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.22 KB
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
{
"name": "taxsyncfordrivers",
"version": "1.0.0",
"description": "Tax sync application for drivers",
"type": "module",
"main": "email-server.js",
"scripts": {
"start": "node email-server.js",
"dev": "nodemon email-server.js",
"test": "node --test tests/*.test.js",
"test:e2e": "playwright test",
"lint": "eslint .",
"prepare": "npm run build-client",
"build-client": "echo \"Client build completed\"",
"postinstall": "echo \"Production install completed\""
},
"dependencies": {
"@aws-sdk/client-ses": "^3.995.0",
"body-parser": "^2.2.2",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"nodemailer": "^8.0.1"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@playwright/test": "^1.58.2",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"nodemon": "^3.1.14",
"prettier": "^3.8.1"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"keywords": [
"tax",
"drivers",
"sync",
"email"
],
"author": "Isaloum",
"license": "MIT"
}