-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
61 lines (61 loc) · 2.16 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
{
"name": "@keiko-serverless/root",
"private": true,
"version": "1.0.0",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build-all": "nx run-many --target=build --all --parallel=4",
"check-audit": "check-audit --yarn",
"deploy": "nx run-many --target=deploy --all --parallel=4",
"deploy-affected": "nx affected --target=deploy",
"graph": "nx dep-graph",
"info": "nx run-many --target=sls-info --all --parallel=4",
"lint-fix": "yarn linter-base-config --fix",
"lint-fix-all": "nx run-many --target=lint-fix-all --all --parallel=4",
"linter-base-config": "eslint",
"package": "nx run-many --target=package --all --parallel=4",
"postinstall": "husky install && syncpack format",
"resolve-audit": "resolve-audit --yarn",
"test": "nx run-many --target=test --all --parallel=4",
"test-affected": "nx affected --target=test",
"test-linter": "nx run-many --target=test-linter --all --parallel=4",
"test-type": "nx run-many --target=test-type --all --parallel=4",
"test-unit": "nx run-many --target=test-unit --all --parallel=4",
"watch": "nx run-many --target=watch --all --parallel=4"
},
"dependencies": {
"constructs": "^10.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@nrwl/cli": "^15.9.3",
"@nrwl/tao": "^16.4.1",
"@nrwl/workspace": "^16.4.1",
"@nx/workspace": "^18.0.6",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"aws-sdk": "^2.1408.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.3",
"npm-audit-resolver": "3.0.0-RC.0",
"nx": "^18.0.6",
"prettier": "^2.8.8",
"serverless-iam-roles-per-function": "^3.2.0",
"syncpack": "^10.6.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
}
}