-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.27 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
{
"name": "@txo/hooks-react",
"version": "2.3.21",
"description": "Technology Studio - Hooks react",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/technology-studio/hooks-react.git"
},
"author": {
"name": "Technology Studio",
"email": "[email protected]",
"url": "https://github.com/technology-studio/"
},
"license": "MIT",
"private": false,
"scripts": {
"build": "yarn build:clean && yarn build:lib",
"build:clean": "yarn rimraf lib",
"build:lib": "yarn tsc",
"build:watch": "yarn tsc --watch",
"test": "jest",
"test:watch": "concurrently \"yarn build:watch\" \"jest --watch\"",
"coverage": "jest --coverage && open coverage/lcov-report/index.html || xdg-open coverage/lcov-report/index.html",
"compare-boilerplate-version": "./scripts/compare-boilerplate-version.sh",
"lint": "eslint --max-warnings 0 .",
"fixcode": "eslint . --fix",
"git-hook": "yarn -s lint-staged",
"prepare": "husky && yarn build",
"print-txo-packages": "yarn list 2> /dev/null|grep @txo|sed 's/.*\\(@txo[^@]*\\)@^*\\([^ ]*\\).*/\\1@\\2/g'|sort|uniq",
"sanity": "yarn lint:ci && yarn build && tsc --noEmit && yarn test --coverage && yarn compare-boilerplate-version && echo 'success'",
"semantic-release": "semantic-release",
"update-boilerplate-version": "./scripts/update-boilerplate-version.sh",
"lint:ci": "yarn lint",
"type-check": "tsc --noEmit"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@txo/functional": "^4.6.19"
},
"devDependencies": {
"@txo-peer-dep/log": "^4.0.4",
"@txo/commitlint": "^1.0.19",
"@txo/log-console": "^3.0.0",
"@txo/semantic-release": "^2.0.8",
"@txo/tsconfig": "^1.1.1",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"concurrently": "^9.1.0",
"eslint-config-txo-typescript-react": "^2.0.82",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"npm-check-updates": "^17.1.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"redux-saga": "^1.3.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"resolutions": {
"@types/react": "^18.3.12"
}
}