-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) · 2.06 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
{
"name": "nx-aws-sam",
"private": true,
"description": "A Comprehensive Monorepo Starter for Node.js Serverless Microservices with AWS SAM and Github Actions Pre-Configured 🚀",
"license": "MIT",
"author": "Maor Agai <maoragai12@gmail.com> (https://github.com/Maoragai12)",
"scripts": {
"prepare": "husky install",
"lint": "nx run-many --target=lint --all --verbose",
"affected:lint": "nx affected --target=lint --verbose",
"test": "nx run-many --target=test --all --verbose",
"affected:test": "nx affected --target=test --verbose",
"build": "nx run-many --target=build --all --parallel=1 --verbose",
"affected:build": "nx affected --target=build --parallel=1 --verbose",
"deploy": "nx run-many --target=deploy --all --parallel=1 --verbose",
"affected:deploy": "nx affected --target=deploy --parallel=1 --verbose",
"generate:service": "npx nx workspace-generator service",
"generate:event": "nx generate:event",
"invoke:lambda": "nx invoke:lambda",
"invoke:api": "nx invoke:api",
"remove": "nx remove"
},
"devDependencies": {
"@nrwl/cli": "14.7.5",
"@nrwl/devkit": "14.7.5",
"@nrwl/eslint-plugin-nx": "14.7.5",
"@nrwl/jest": "14.7.5",
"@nrwl/js": "^15.2.1",
"@nrwl/linter": "14.7.5",
"@nrwl/node": "14.7.5",
"@nrwl/nx-cloud": "latest",
"@nrwl/workspace": "14.7.5",
"@types/aws-lambda": "8.10.104",
"@types/jest": "29.0.2",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "5.37.0",
"@typescript-eslint/parser": "5.36.1",
"esbuild": "^0.15.9",
"eslint": "8.23.1",
"eslint-config-prettier": "8.1.0",
"eslint-config-standard-with-typescript": "23.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.2.5",
"eslint-plugin-promise": "6.0.1",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "8.0.0",
"jest": "29.0.3",
"jest-environment-jsdom": "29.0.3",
"nx": "14.7.5",
"ts-jest": "29.0.1",
"ts-node": "10.9.1",
"tslib": "2.4.0",
"typescript": "4.8.3"
},
"engines": {
"node": ">=16"
}
}