-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.76 KB
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": "universal-data-layer-monorepo",
"version": "0.0.1",
"description": "Universal data layer to connect any data source with any framework",
"type": "module",
"directories": {
"doc": "docs"
},
"scripts": {
"turbo": "turbo",
"dev": "node scripts/dev.js",
"build": "turbo build --filter='./packages/*' --ui=stream",
"start": "turbo start --filter='./packages/*' --ui=stream",
"lint": "turbo lint --filter='./packages/*' --ui=stream",
"fix": "turbo fix --filter='./packages/*' && npm run fix --prefix tests/manual",
"test": "turbo test --filter='./packages/*' --ui=stream",
"test:package": "turbo test --ui=stream --filter",
"test:coverage": "turbo test:coverage --filter='./packages/*' --ui=stream; exitcode=$?; node scripts/generate-coverage-index.js && node scripts/inject-coverage-nav.js; exit $exitcode",
"test:coverage:file": "npm run test:coverage:file --workspace=universal-data-layer --",
"codegen": "turbo codegen --filter='./packages/*' --ui=stream",
"typecheck": "turbo typecheck --filter='./packages/*' --ui=stream && npm run typecheck --prefix tests/manual",
"changeset": "changeset",
"version": "changeset version && npm install --package-lock-only",
"release": "turbo build --filter='./packages/*' && changeset publish --ui=stream",
"prepare": "husky",
"prettier": "prettier --write .",
"eslint": "eslint"
},
"author": "Dawid Urbanski <hi@dawidurbanski.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/dawidurbanski/universal-data-layer.git"
},
"bugs": {
"url": "https://github.com/dawidurbanski/universal-data-layer/issues"
},
"homepage": "https://github.com/dawidurbanski/universal-data-layer#readme",
"license": "MIT",
"packageManager": "npm@10.8.2",
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.36.0",
"@types/node": "^24.5.2",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^6.1.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.0",
"prettier": "^3.6.2",
"tsc-alias": "^1.8.16",
"tsc-watch": "^7.1.1",
"turbo": "^2.7.1",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"workspaces": [
"packages/*",
"tests/manual"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md,yml,yaml}": [
"prettier --write"
]
},
"engines": {
"node": ">=20.19.0"
}
}