-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 990 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
36
{
"name": "ts-express-starter",
"version": "0.0.2",
"description": "Starter project for TypeScript Express app.",
"main": "src/server.ts",
"scripts": {
"build": "tsc",
"dev": "nodemon -r tsconfig-paths/register src/server.ts",
"lint": "npx eslint ."
},
"keywords": [
"typescript",
"express"
],
"author": "Maciej Ziemichod",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.20",
"@types/jest": "^29.5.7",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.53.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"zod": "^3.22.4"
}
}