-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.43 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.43 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
{
"name": "povery-cli",
"version": "0.1.2",
"author": "Oscar Chinellato",
"description": "Povery - The CLI",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=development jest",
"build": "rimraf ./dist && tsc --project tsconfig.build.json --skipLibCheck"
},
"repository": "https://github.com/sickOscar/povery-cli",
"keywords": [],
"bin": "./cli.mjs",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-lambda": "^3.758.0",
"@aws-sdk/client-s3": "^3.758.0",
"@aws-sdk/lib-storage": "^3.758.0",
"@types/fs-extra": "^11.0.4",
"@types/serverless": "^3.12.27",
"adm-zip": "^0.5.16",
"chalk": "^5.4.1",
"commander": "^12.1.0",
"date-fns": "^3.6.0",
"dotenv": "^16.4.7",
"esbuild": "^0.20.2",
"fs-extra": "^11.3.0",
"inquirer": "^9.3.7",
"joi": "^17.13.3",
"json5": "^2.2.3",
"jsonschema": "^1.5.0",
"lodash": "^4.17.21",
"ora": "^8.2.0",
"rimraf": "^5.0.10",
"serverless": "^3.40.0",
"serverless-offline": "^13.9.0",
"serverless-plugin-typescript": "^2.1.5",
"serverless-tscpaths": "^0.0.8",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.11",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.2"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.24",
"@types/rimraf": "^4.0.5",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.2.6"
}
}