-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
39 lines (39 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
{
"name": "server",
"version": "1.0.0",
"description": "Server that handles form submission for drawDB",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "1ilit",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.25.0",
"@types/cors": "^2.8.17",
"@types/dotenv": "^6.1.1",
"@types/express": "^5.0.1",
"@types/node": "^22.14.1",
"@types/nodemailer": "^6.4.17",
"eslint": "^9.25.0",
"globals": "^16.0.0",
"nodemon": "^3.1.9",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.30.1"
},
"dependencies": {
"axios": "^1.8.4",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"nodemailer": "^6.10.1",
"ts-node": "^10.9.2"
}
}