-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 2.42 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
{
"private": true,
"type": "module",
"scripts": {
"install": "husky install && pnpm ls --r --filter \"./packages/*\"",
"build": "cross-env NODE_OPTIONS=--max-old-space-size=16384 pnpm --filter \"./packages/*\" build",
"check": "pnpm run commit-check && pnpm run build && pnpm --filter \"./packages/*\" --parallel run \"/^(test|lint|type-check)/\"",
"commit-check": "commitlint --from=HEAD~1 --verbose",
"test": "cross-env NODE_OPTIONS=--max-old-space-size=16384 pnpm --filter \"./packages/*\" --parallel test",
"lint": "cross-env NODE_OPTIONS=--max-old-space-size=16384 pnpm --filter \"./packages/*\" --parallel lint",
"type-check": "cross-env NODE_OPTIONS=--max-old-space-size=16384 pnpm --filter \"./packages/*\" --parallel type-check",
"dev": "turbo run dev --no-cache --force --concurrency=30",
"version": "tsx ./packages/techor/src/bin version",
"analyze:commit": "semantic-release --debug",
"clean": "rm -rf ./packages/**/*dist && rm -rf ./{examples,packages}/**/*node_modules"
},
"bugs": {
"url": "https://github.com/techor-dev/techor/issues"
},
"engines": {
"node": "^22.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/techor-dev/techor.git"
},
"devDependencies": {
"@techor/jest": "workspace:^",
"@techor/jest-dom": "workspace:^",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.17.7",
"commitlint-config-techor": "workspace:^",
"conventional-changelog-techor": "workspace:^",
"eslint": "^9.15.0",
"eslint-config-techor": "workspace:^",
"eslint-plugin-react-hooks": "^5.0.0",
"jest-environment-jsdom": "^29.7.0",
"jest-puppeteer": "^10.1.4",
"parent-module": "^3.1.0",
"puppeteer": "^22.15.0",
"rollup": "^4.27.4",
"semantic-release-config-techor": "workspace:^",
"strip-ansi": "^7.1.0",
"tmp": "^0.2.3",
"ts-dedent": "^2.2.0",
"tsx": "^4.19.2",
"typescript": "^5.0.0"
},
"dependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/pluginutils": "^5.1.3",
"cross-env": "^7.0.3",
"get-tsconfig": "^4.8.1",
"rollup-plugin-swc3": "^0.12.1",
"ts-jest": "^29.2.5"
}
}