-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
126 lines (126 loc) · 3.82 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "flowaccount",
"version": "99.99.99",
"license": "MIT",
"workspaces": [
"libs/nx-serverless",
"libs/nx-aws-cdk"
],
"repository": {
"type": "git",
"url": "ssh://git@github.com/flowaccount/nx-plugins.git"
},
"scripts": {
"commit": "git-cz",
"checkcommit": "node ./scripts/commit-lint.js",
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"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",
"dep-graph": "nx dep-graph",
"help": "nx help",
"workspace-generator": "nx workspace-generator",
"e2e-registry": "yarn verdaccio --config ./tools/scripts/local-registry/config.yml --listen 4872",
"publish-global": "yarn nx build $1 && cd dist/libs/$1 && npm publish",
"publish-beta": "ts-node tools/scripts/publish-beta",
"publish-local": "cp .npmrc.local .npmrc && run-p \"rimraf tmp\" e2e-registry \"ts-node ./tools/scripts/publish-all 99.99.99 local\"",
"semantic-release": "semantic-release",
"ts-node": "ts-node",
"rimraf": "rimraf"
},
"private": true,
"dependencies": {
"constructs": "^10.3.0",
"express": "4.17.2",
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"@babel/code-frame": "^7.8.3",
"@nrwl/tao": "18.0.4",
"@nx-dotnet/utils": "^1.3.2",
"@scullyio/scully": "^1.1.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/release-notes-generator": "^9.0.3",
"@swc/core": "^1.2.0",
"@swc-node/register": "^1.2.0",
"@types/express": "4.17.13",
"@types/fs-extra": "^8.1.0",
"@types/jest": "29.4.4",
"@types/node": "18.16.9",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"aws-cdk": "^2.143.1",
"aws-cdk-lib": "^2.143.1",
"circular-dependency-plugin": "^5.0.2",
"cypress": "^4.1.0",
"cz-conventional-changelog": "^3.0.2",
"cz-customizable": "^6.2.0",
"depcheck": "1.4.3",
"dotenv": "10.0.0",
"dotenv-json": "^1.0.0",
"eslint": "8.48.0",
"eslint-config-prettier": "9.1.0",
"husky": "^3.0.3",
"ignore": "^5.0.4",
"is-builtin-module": "^3.0.0",
"jest": "29.4.3",
"nx": "18.0.4",
"prettier": "2.5.1",
"reflect-metadata": "^0.1.13",
"rxjs-for-await": "0.0.2",
"semantic-release": "^17.4.7",
"serverless": "^3.33.0",
"serverless-offline": "^13.3.3",
"strip-json-comments": "^3.1.0",
"swc-loader": "0.2.6",
"tree-kill": "^1.2.2",
"ts-jest": "29.1.2",
"ts-node": "9.1.1",
"tslib": "^2.4.0",
"tsyringe": "^4.7.0",
"typescript": "5.3.3",
"upath": "^1.2.0",
"uuid": "^9.0.0",
"verdaccio": "^5.1.5",
"jest-environment-jsdom": "28.1.3",
"nx-cloud": "18.0.0",
"@nx/devkit": "18.0.4",
"@nx/workspace": "18.0.4",
"@nx/eslint-plugin": "18.0.4",
"@nx/jest": "18.0.4",
"@nx/eslint": "18.0.4",
"@nx/node": "18.0.4",
"@nx/webpack": "18.0.4",
"@nx/plugin": "18.0.4",
"@nx/js": "18.0.4",
"@nx/express": "18.0.4",
"webpack-node-externals": "^3.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"husky": {
"hooks": {
"pre-push": "yarn checkcommit && yarn format:check --base=$(git rev-parse --abbrev-ref HEAD)"
}
}
}