forked from goestav/nx-semantic-release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.17 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
{
"name": "theunderscorer",
"version": "0.0.0",
"description": "Semantic release for NX with support ESM (PNPM version)",
"author": {
"email": "ruscon@gmail.com",
"name": "Oleg Coroliov"
},
"repository": {
"type": "git",
"url": "https://github.com/ruscon/nx-semantic-release-pnpm"
},
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"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-pnpm --watch",
"build": "nx build nx-semantic-release-pnpm",
"build:skip-cache": "nx build nx-semantic-release-pnpm --skip-nx-cache",
"test": "nx test nx-semantic-release-pnpm --runInBand --verbose",
"lint": "nx lint nx-semantic-release-pnpm",
"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,
"devDependencies": {
"@nx/devkit": "16.7.4",
"@nx/eslint-plugin": "16.7.4",
"@nx/jest": "16.7.4",
"@nx/js": "16.7.4",
"@nx/linter": "16.7.4",
"@nx/node": "16.7.4",
"@nx/plugin": "16.7.4",
"@nx/web": "16.7.4",
"@nx/workspace": "16.7.4",
"@types/jest": "^29.0.0",
"@types/node": "^20.4.0",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "8.46.0",
"eslint-config-prettier": "8.6.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.6.0",
"nx": "16.7.4",
"prettier": "^2.8.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.0.0"
}
}