-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
92 lines (92 loc) · 2.83 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
{
"name": "theunderscorer",
"version": "0.0.0",
"description": "Monorepo for semantic release for NX.",
"author": {
"email": "[email protected]",
"name": "Przemysław Zydek"
},
"repository": {
"type": "git",
"url": "https://github.com/TheUnderScorer/nx-semantic-release"
},
"license": "MIT",
"engines": {
"node": ">=14"
},
"scripts": {
"typecheck": "tsc --noEmit -p tsconfig.base.json",
"release": "ts-node --project scripts/tsconfig.scripts.json scripts/release.ts",
"nx": "nx",
"start": "nx build nx-semantic-release --watch",
"build": "nx build nx-semantic-release",
"build:skip-cache": "nx build nx-semantic-release --skip-nx-cache",
"test": "nx test nx-semantic-release --runInBand",
"lint": "nx lint nx-semantic-release",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help"
},
"private": true,
"dependencies": {
"@nx/devkit": "19.6.0",
"@semantic-release/changelog": "6.0.2",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.7",
"@semantic-release/npm": "9.0.2",
"cosmiconfig": "^7.0.1",
"deep-map": "^2.0.0",
"es6-weak-map": "^2.0.3",
"remeda": "^0.0.32",
"semantic-release": "20.1.0",
"semantic-release-plugin-decorators": "3.0.1"
},
"devDependencies": {
"@nx/eslint": "19.6.0",
"@nx/eslint-plugin": "19.6.0",
"@nx/jest": "19.6.0",
"@nx/js": "19.6.0",
"@nx/node": "19.6.0",
"@nx/plugin": "19.6.0",
"@nx/web": "19.6.0",
"@nx/workspace": "19.6.0",
"@types/fs-extra": "^11.0.1",
"@types/jest": "29.5.12",
"@types/node": "18.16.9",
"@types/semantic-release": "20.0.1",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"ajv": "^8.12.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "9.1.0",
"fs-extra": "^11.1.1",
"gitlog": "^4.0.4",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"nx": "19.6.0",
"prettier": "2.7.1",
"rimraf": "^4.1.2",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"ttypescript": "^1.5.13",
"type-fest": "^2.8.0",
"typescript": "5.5.4"
}
}