-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
99 lines (99 loc) · 2.63 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@nxkit/nxkit-source",
"description": "",
"keywords": [
"nx",
"nx-plugin",
"monorepo"
],
"author": {
"name": "Sebastian Duque",
"url": "https://github.com/sebastiandg7"
},
"repository": {
"type": "github",
"url": "https://github.com/nxkit/nxkit"
},
"bugs": {
"url": "https://github.com/nxkit/nxkit/issues"
},
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build-all": "nx run-many --target build --all --parallel 8 --projects packages/*",
"commit": "git-cz",
"check-commit": "node ./tools/scripts/commit-lint.js",
"check-format": "nx format:check --all",
"check-lock-files": "node ./tools/scripts/check-lock-files.js",
"prepare": "is-ci || husky install",
"local-registry": "./tools/scripts/local-registry.sh",
"release": "ts-node -P ./tools/scripts/tsconfig.scripts.json ./tools/scripts/release"
},
"nx": {},
"private": true,
"devDependencies": {
"@lerna/publish": "^6.6.2",
"@lerna/version": "^6.6.2",
"@nx/eslint": "20.0.10",
"@nx/eslint-plugin": "20.0.10",
"@nx/jest": "20.0.10",
"@nx/js": "20.0.10",
"@nx/plugin": "20.0.10",
"@nx/vite": "20.0.10",
"@nx/workspace": "20.0.10",
"@swc-node/register": "1.9.2",
"@swc/cli": "0.3.14",
"@swc/core": "1.5.7",
"@types/jest": "29.5.14",
"@types/node": "18.19.14",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"@vitest/coverage-c8": "0.33.0",
"@vitest/ui": "1.3.1",
"all-contributors-cli": "^6.26.1",
"commitizen": "^4.3.1",
"cz-customizable": "^7.2.1",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jsdom": "22.1.0",
"jsonc-eslint-parser": "^2.4.0",
"lerna": "^5.6.2",
"lockfile-lint": "^4.14.0",
"node-fetch": "3.3.0",
"nx": "20.0.10",
"prettier": "^2.8.8",
"pretty-quick": "^3.3.1",
"sass": "1.56.1",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "5.5.4",
"vite": "5.0.12",
"vite-plugin-eslint": "^1.8.1",
"vite-tsconfig-paths": "4.2.0",
"vitest": "1.3.1",
"yargs": "^17.7.2",
"nx-cloud": "latest"
},
"dependencies": {
"@nx/devkit": "20.0.10",
"@phenomnomnominal/tsquery": "^5.0.1",
"@swc/helpers": "0.5.13",
"fs-extra": "^11.2.0",
"style-dictionary": "^3.9.2",
"tslib": "^2.8.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"volta": {
"node": "20.11.0",
"pnpm": "9.12.3"
},
"packageManager": "pnpm@9.12.3"
}