-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.37 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
{
"name": "eslint-config-txo-app-react-native",
"version": "1.0.19",
"description": "Technology Studio - Eslint config txo app react native",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/technology-studio/eslint-config-txo-app-react-native.git"
},
"author": {
"name": "Technology Studio",
"email": "[email protected]",
"url": "https://github.com/technology-studio/"
},
"license": "UNLICENSED",
"private": false,
"scripts": {
"build:clean": "yarn rimraf lib",
"build:lib": "yarn tsc",
"build:watch": "yarn tsc --watch",
"build": "yarn build:clean && yarn build:lib",
"compare-boilerplate-version": "./scripts/compare-boilerplate-version.sh",
"coverage": "jest --coverage && open coverage/lcov-report/index.html || xdg-open coverage/lcov-report/index.html",
"lint:ci": "yarn lint",
"lint:fix": "eslint . --fix",
"lint": "eslint --max-warnings 0 .",
"prepare": "husky && yarn build",
"print-txo-packages": "yarn list 2> /dev/null|grep @txo|sed 's/.*\\(@txo[^@]*\\)@^*\\([^ ]*\\).*/\\1@\\2/g'|sort|uniq",
"sanity": "yarn build && yarn lint:ci && tsc --noEmit && yarn test --coverage && yarn compare-boilerplate-version && echo 'success'",
"semantic-release": "semantic-release",
"test:watch": "concurrently \"yarn build:watch\" \"yarn test --watch\"",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"type-check": "tsc --noEmit",
"update-boilerplate-version": "./scripts/update-boilerplate-version.sh"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"eslint-config-txo-typescript": "^7.3.13",
"eslint-config-txo-typescript-react": "^3.0.6"
},
"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": "^2.0.0",
"@types/eslint": "^9.6.1",
"@types/eslint__eslintrc": "^2.1.2",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.18",
"concurrently": "^9.1.2",
"depcheck": "^1.4.7",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.3.0",
"next": "^15.1.4",
"npm-check-updates": "^17.1.13",
"react": "^18.3.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}