-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.1 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
{
"name": "ts-result",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"nx": "node -v && nx",
"build:nx": "nx build ts-result",
"build": "run-s build:js build:copy build:check",
"build:copy": "shx cp ./packages/ts-result/package.json ./build/package.json && shx cp ./README.md ./build/README.md",
"build:js": "tsup",
"build:check": "attw --pack build",
"lint-staged": "lint-staged",
"test": "nx run ts-result:test",
"format": "nx format:write",
"deploy": "cd build && npm publish --access public",
"lint": "run-s tsc nx run-many --all --target=lint",
"publish": "run-s lint test build deploy",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"prepare": "husky install",
"update": "nx migrate latest"
},
"private": false,
"dependencies": {
"@sweet-monads/either": "3.3.1",
"@sweet-monads/interfaces": "3.3.0",
"@sweet-monads/maybe": "3.3.1",
"tslib": "2.3.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.4",
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@nx/eslint": "19.1.2",
"@nx/eslint-plugin": "19.1.2",
"@nx/jest": "19.1.2",
"@nx/js": "19.1.2",
"@nx/workspace": "19.1.2",
"@types/jest": "29.4.4",
"@types/node": "^18.16.9",
"@typescript-eslint/eslint-plugin": "7.3.0",
"@typescript-eslint/parser": "7.3.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.0.0",
"fast-check": "3.3.0",
"husky": "8.0.0",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"lint-staged": "13.2.0",
"npm-run-all2": "6.2.2",
"nx": "19.1.2",
"prettier": "3.3.1",
"shx": "^0.3.4",
"standard-version": "^9.5.0",
"ts-jest": "29.1.4",
"ts-node": "10.9.1",
"tsup": "^8.2.4",
"typescript": "5.4.5"
},
"engines": {
"node": ">= 18 < 19",
"npm": ">=9 <=10",
"yarn": "Please use NPM instead of yarn to install dependencies"
}
}