-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.51 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/live-activity-countdown-view-react-native",
"version": "1.1.0",
"description": "Technology Studio - Live activity countdown view react native",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/technology-studio/live-activity-countdown-view-react-native.git"
},
"author": {
"name": "Technology Studio",
"email": "npm@technologystudio.sk",
"url": "https://github.com/technology-studio/"
},
"homepage": "https://github.com/technology-studio/live-activity-countdown-view-react-native#readme",
"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 eslint -c eslint-ci.config.js --cache . && yarn txo-eslint ccr --cache",
"type-check": "tsc --noEmit"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {},
"devDependencies": {
"@txo-peer-dep/log": "^4.0.4",
"@txo/commitlint": "^1.0.21",
"@txo/log-console": "^3.0.0",
"@txo/semantic-release": "^2.0.10",
"@txo/tsconfig-cjs": "^2.0.0",
"@types/jest": "^29.5.14",
"@types/react": "~18.3.18",
"@types/react-native": "0.73.0",
"concurrently": "^9.1.0",
"eslint-config-txo-package-react": "^1.0.17",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.11",
"npm-check-updates": "^17.1.12",
"react": "18.3.1",
"react-native": "0.76.5",
"redux-saga": "^1.3.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
}
}