forked from efacity/nx-plugins
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.23 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
{
"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/therk/nx-plugins",
"repository": {
"type": "git",
"url": "git+https://github.com/therk/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 install"
},
"private": true,
"dependencies": {
"@nx/devkit": "^16.5.2",
"@swc/helpers": "~0.5.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1600.1",
"@angular-devkit/schematics": "^16.0.1",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@jscutlery/semver": "^3.0.0",
"@nx/eslint-plugin": "^16.1.4",
"@nx/jest": "^16.5.2",
"@nx/js": "^16.5.2",
"@nx/linter": "^16.1.4",
"@nx/plugin": "^16.5.2",
"@nx/vite": "^16.5.2",
"@nx/workspace": "^16.1.4",
"@swc-node/register": "~1.4.2",
"@swc/cli": "~0.1.62",
"@swc/core": "~1.3.51",
"@types/jest": "^29.5.1",
"@types/node": "18.7.1",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"dotenv": "^16.0.3",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"is-ci": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.4.1",
"lint-staged": "^13.2.2",
"nx": "^16.1.4",
"nx-cloud": "^16.1.0",
"prettier": "^2.6.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tslib": "^2.3.0",
"typescript": "~5.0.2"
},
"lint-staged": {
"*.{js,json,css,scss,md,ts,html,graphql}": [
"npm run format --uncommitted"
]
}
}