generated from johngeorgewright/ts-module
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
79 lines (79 loc) · 2.55 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@runtyping/mono-repo",
"version": "4.7.0",
"description": "Generate runtypes from static types & JSON schema.",
"main": "dist/index.js",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach --all --topological-dev --exclude @runtyping/scaffold run build",
"clean": "yarn workspaces foreach --all run clean",
"package:generate": "node --require ts-node/register $(yarn bin yo) ./packages/scaffold/src/package-generate",
"package:remove": "node --require ts-node/register $(yarn bin yo) ./packages/scaffold/src/package-remove",
"release": "yarn workspaces foreach --all --no-private --topological-dev run release",
"start": "yarn build && yarn workspaces foreach --all --no-private --parallel --interlaced run start",
"test": "yarn workspaces foreach --all run test",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johngeorgewright/runtyping.git"
},
"keywords": [],
"author": "John Wright <johngeorge.wright@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/johngeorgewright/runtyping/issues"
},
"homepage": "https://github.com/johngeorgewright/runtyping#readme",
"devDependencies": {
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@jest/types": "29.6.3",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.1.0",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/jest": "29.5.10",
"@types/node": "20.10.2",
"@types/source-map-support": "0.5.10",
"commitizen": "4.3.0",
"concurrently": "8.2.2",
"cz-conventional-changelog": "3.3.0",
"fp-ts": "2.16.1",
"husky": "8.0.3",
"isbinaryfile": "5.0.0",
"jest": "29.7.0",
"lint-staged": "15.1.0",
"prettier": "2.8.8",
"rimraf": "5.0.5",
"runtypes": "6.7.0",
"semantic-release": "20.1.3",
"semantic-release-monorepo": "7.0.5",
"source-map-support": "0.5.21",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.2.2",
"yo": "4.3.1"
},
"lint-staged": {
"*.{md,json,js,jsx,ts,tsx,yml,yaml}": [
"yarn prettier --write"
],
"packages/generator/src/runtypes.ts": [
"yarn workspace @runtyping/generator schema"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"tslib": "2.6.2"
},
"packageManager": "yarn@4.0.2"
}