-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kedrzu/nzyme.git"
},
"author": "Michał Kędrzyński <m.kedrzynski@gmail.com>",
"packageManager": "yarn@4.1.0",
"workspaces": [
"packages/*"
],
"scripts": {
"setup": "yarn && turbo run build && yarn monorepo",
"monorepo": "nzyme monorepo",
"clean": "del \"**/dist\" \"**/.tsbuildinfo\" \"!**/node_modules/**\"",
"build": "tsc --build tsconfig.dev.json",
"watch": "yarn build --watch",
"release": "nx release --yes",
"dev": "yarn && yarn monorepo && yarn watch",
"test": "vitest run",
"coverage": "vitest run --coverage",
"upgrade": "yarn upgrade-interactive"
},
"devDependencies": {
"@nx/js": "^20.3.1",
"@nzyme/cli": "*",
"@swc-node/register": "^1.10.9",
"@swc/core": "^1.10.7",
"del-cli": "^6.0.0",
"nx": "20.3.1",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"turbo": "^2.3.3",
"typescript": "^5.7.3",
"vitest": "^3.0.1"
},
"depcheck": {
"ignoreDeps": [
"*"
]
}
}