-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.66 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "typescript-nodejs-zod-template",
"version": "1.0.0",
"description": "template repository for projects using typescript and nodejs",
"main": "dist/index.js",
"engines": {
"node": "^18.0.0"
},
"scripts": {
"start": "node dist/index.js",
"build": "tsc; tscpaths -p tsconfig.json -s src -o dist",
"lint": "eslint src/**/*.ts",
"dev": "nodemon --watch './src/**/*.ts' --exec ts-node ./src/index.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/probablyArth/typescript-nodejs-zod.git"
},
"keywords": [
"typescript",
"nodejs"
],
"author": "probablyarth <probablyarth@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/probablyArth/typescript-nodejs-zod/issues"
},
"homepage": "https://github.com/probablyArth/typescript-nodejs-zod#readme",
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.19.2",
"morgan": "^1.10.0",
"zod": "^3.22.4",
"zod-express-middleware": "^1.4.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/morgan": "^1.9.9",
"@types/node": "^20.12.7",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tscpaths": "^0.0.9",
"typescript": "^5.4.5"
}
}