-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.52 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.52 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
80
{
"name": "@datacables/javascript",
"version": "0.0.0",
"private": true,
"license": "MIT",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build": "FORCE_COLOR=1 turbo build --concurrency=${TURBO_CONCURRENCY:-80%}",
"bundlewatch": "turbo bundlewatch",
"changeset": "changeset",
"changeset:empty": "npm run changeset -- --empty",
"clean": "turbo clean",
"format": "prettier --write .",
"format:check": "prettier --cache --check .",
"lint": "FORCE_COLOR=1 turbo lint",
"lint:attw": "FORCE_COLOR=1 turbo lint:attw",
"lint:fix": "FORCE_COLOR=1 turbo lint -- --fix",
"lint:publint": "FORCE_COLOR=1 turbo lint:publint",
"prepare": "husky",
"release": "changeset publish && git push --follow-tags",
"release:canary": "changeset publish --tag canary --no-git-tag",
"turbo:clean": "turbo daemon clean",
"version": "changeset version && npm install --package-lock-only",
"version:canary": "./scripts/canary.mjs",
"version:snapshot": "./scripts/snapshot.mjs",
"yalc:all": "for d in packages/*/; do echo $d; cd $d; npx yalc push --replace --sig; cd '../../'; done"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@arethetypeswrong/cli": "^0.15.3",
"@changesets/cli": "^2.26.2",
"@changesets/get-github-info": "^0.5.2",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/cross-spawn": "^6.0.3",
"@types/jest": "^29.3.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"citty": "^0.1.4",
"conventional-changelog-conventionalcommits": "^4.6.3",
"cpy-cli": "^5.0.0",
"cross-spawn": "^7.0.3",
"dotenv": "^16.3.1",
"eslint": "^8.49.0",
"execa": "^5.1.1",
"expect-type": "^0.16.0",
"fastify": "4.12.0",
"fastify-plugin": "^4.5.0",
"fs-extra": "^11.1.1",
"get-port": "^5.1.1",
"globby": "^13.2.2",
"http-proxy": "^1.18.1",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^14.0.1",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.3",
"publint": "^0.2.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "^5.0.5",
"statuses": "^1.4.0",
"tree-kill": "^1.2.2",
"ts-jest": "^29.0.3",
"tsup": "^8.0.1",
"turbo": "^2.0.6",
"turbo-ignore": "^2.0.6",
"typescript": "^5.4.5",
"verdaccio": "^5.26.3",
"zx": "^7.2.3"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.14.0"
}
}