-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.48 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
{
"name": "zod-workshop",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .js,.ts .",
"build": "tsc && npm run test",
"build:watch": "tsc --watch",
"test:comparison": "ts-mocha 'src/comparison/**/*.test.ts'",
"test:all": "ts-mocha 'src/**/*.test.ts'",
"test:one": "ts-mocha \"src/challenges/challenge_$npm_config_challenge/challenge.test.ts\"",
"test:one:watch": "ts-mocha \"src/challenges/challenge_$npm_config_challenge/*.test.ts\" -w --watch-files \"src/challenges/challenge_$npm_config_challenge/*.ts\"",
"test:demo": "ts-mocha \"src/demo/*.test.ts\"",
"test:demo:watch": "ts-mocha \"src/demo/*.test.ts\" -w --watch-files \"src/demo/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/sdegroot/zod-workshop.git"
},
"author": "Sander de Groot",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/sdegroot/zod-workshop/issues"
},
"homepage": "https://github.com/sdegroot/zod-workshop#readme",
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.2",
"@types/node": "^20.8.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"chai": "^4.3.10",
"eslint": "^8.51.0",
"eslint-plugin-import": "^2.28.1",
"ts-mocha": "^10.0.0",
"typescript": "^5.2.2"
},
"dependencies": {
"joi": "^17.11.0",
"zod": "^3.22.4",
"zod-validation-error": "^1.5.0"
}
}