-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.52 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.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
{
"name": "systemix",
"private": true,
"description": "Systemix — A Modular Open-Source Toolkit for Secure and Scalable JavaScript Systems",
"author": "Shahadath Hossen Sajib <shahadathhossensajib732@gmail.com> (https://github.com/shahadathhs)",
"packageManager": "pnpm@10.26.0",
"repository": {
"type": "git",
"url": "git+https://github.com/shahadathhs/systemix.git"
},
"scripts": {
"dev": "turbo dev",
"start": "turbo start",
"build": "turbo build",
"typecheck": "turbo typecheck",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"format": "prettier --check . --ignore-path .prettierignore && turbo format",
"format:fix": "prettier --write . --ignore-path .prettierignore && turbo format:fix",
"ci:check": "pnpm lint && pnpm format",
"ci:fix": "pnpm lint:fix && pnpm format:fix",
"clean": "turbo clean && rimraf node_modules",
"prepare": "husky",
"prepublishOnly": "pnpm build",
"commit": "cz",
"version": "changeset version",
"publish": "changeset publish",
"changelog": "changeset add",
"test": "turbo run test"
},
"workspaces": [
"packages/*",
"configs/*",
"demos/*"
],
"devDependencies": {
"@changesets/cli": "catalog:",
"@systemix/eslint": "workspace:*",
"@systemix/typescript": "workspace:*",
"commitizen": "catalog:",
"cz-git": "catalog:",
"eslint": "catalog:",
"husky": "catalog:",
"prettier": "catalog:",
"rimraf": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:"
}
}