-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.25 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.25 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
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
{
"name": "@berenddeboer/nx-plugins",
"description": "A collection of third-party Nx plugins based on https://github.com/codebrewlab/nx-plugins by Devin Kwon",
"author": {
"name": "Berend de Boer"
},
"license": "MIT",
"homepage": "https://github.com/berenddeboer/nx-plugins",
"repository": {
"type": "git",
"url": "git+https://github.com/berenddeboer/nx-plugins.git"
},
"scripts": {
"nx": "nx",
"lint-stage": "lint-staged",
"commitlint": "commitlint",
"is-ci": "is-ci",
"test": "nx test nx-aws-cdk",
"lint": "nx lint nx-aws-cdk",
"e2e": "nx e2e",
"format": "nx format:write --uncommitted",
"build:aws-cdk": "nx build nx-aws-cdk",
"link:aws-cdk": "cd dist/packages/nx-aws-cdk && npm link",
"test:sst": "nx test nx-sst",
"build:sst": "nx build nx-sst",
"link:sst": "cd dist/packages/nx-sst && npm link",
"prepare": "husky"
},
"private": true,
"dependencies": {
"@nx/devkit": "21.5.2",
"@nx/eslint": "21.5.2",
"@nx/node": "21.5.2",
"@swc/helpers": "0.5.17",
"tslib": "^2.8.1"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@jscutlery/semver": "^5.7.1",
"@nx/eslint-plugin": "21.5.2",
"@nx/jest": "21.5.2",
"@nx/js": "21.5.2",
"@nx/plugin": "21.5.2",
"@nx/vite": "21.5.2",
"@nx/workspace": "21.5.2",
"@swc-node/register": "1.11.1",
"@swc/cli": "0.7.9",
"@swc/core": "1.15.4",
"@types/jest": "30.0.0",
"@types/node": "24.10.4",
"@typescript-eslint/eslint-plugin": "8.49.0",
"@typescript-eslint/parser": "8.49.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"jest": "30.2.0",
"jest-environment-jsdom": "30.2.0",
"jest-util": "30.2.0",
"jiti": "2.6.1",
"lint-staged": "^16.2.7",
"nx": "21.5.2",
"prettier": "^3.7.4",
"ts-jest": "29.4.6",
"ts-node": "^10.9.2",
"tslib": "^2.3.0",
"typescript": "5.9.3"
},
"lint-staged": {
"*.{js,json,css,scss,md,ts,html,graphql}": [
"npm run format --uncommitted"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"nx",
"oxc-resolver"
]
}
}