-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
79 lines (79 loc) · 2.5 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": "root",
"private": true,
"repository": "https://github.com/sledorze/morphic-ts.git",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "ultra -r clean",
"build": "ultra -r build",
"test": "ultra -r test",
"lint": "ultra -r lint",
"fix-eslint": "eslint --fix --ext .ts ./packages",
"version:alpha": "lerna version prerelease --conventional-commits --preid=alpha",
"version:preminor": "lerna version preminor --conventional-commits",
"version:minor": "lerna version preminor --conventional-commits",
"version:prepatch": "lerna version prepatch --conventional-commits",
"version:patch": "lerna version patch --conventional-commits",
"version:graduate": "lerna version --conventional-commits --conventional-graduate",
"postinstall": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@commitlint/config-lerna-scopes": "^12.1.1",
"@types/chai": "4.2.11",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"chai": "^4.2.0",
"cz-conventional-changelog": "^3.3.0",
"docs-ts": "^0.2.1",
"dtslint": "github:gcanti/dtslint",
"eslint": "^7.23.0",
"eslint-config-prettier": "^7.0.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-codegen": "^0.14.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"fast-check": "^2.6.0",
"fast-equals": "^2.0.0",
"fp-ts": "^2.4.1",
"fp-ts-contrib": "^0.1.15",
"husky": "^6.0.0",
"import-path-rewrite": "github:mikearnaldi/import-path-rewrite",
"io-ts": "^2.1.3",
"io-ts-types": "^0.5.6",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"mocha": "^7.0.0",
"monocle-ts": "^2.0.1",
"newtype-ts": "^0.3.3",
"prettier": "2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"tslib": "^2.2.0",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"typescript": "^4.2.3",
"ultra-runner": "^3.10.3",
"yarn-deduplicate": "2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "./ensure-deduplicate.sh",
"pre-push": "./pre-push.sh"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}