-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 909 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
37
{
"name": "ts-zod",
"version": "1.0.0",
"keywords": [
"typescript",
"eslint",
"zod"
],
"author": "Julien Rollin",
"license": "ISC",
"description": "Typesript with eslint and zod",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "tsc && node ./dist/index.js",
"dev": "tsc --watch && node ./dist/index.js",
"test": "vitest",
"test:ci": "vitest --run",
"test:coverage": "vitest --coverage --run",
"lint": "eslint "
},
"dependencies": {
"zod": "^3.22.4"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@vitest/coverage-v8": "^1.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"fetch-mocked": "^0.0.21",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
}
}