-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.07 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
{
"name": "sync-cloud-storage",
"version": "1.0.0-rc.6",
"license": "MIT",
"type": "module",
"main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"author": {
"name": "Masoud Ghorbani <[email protected]>",
"url": "https://mgh.space"
},
"keywords": [
"sync",
"cloud",
"storage",
"bucket",
"serverless",
"aws",
"s3",
"cdk",
"cloudformation"
],
"engines": {
"node": ">=18.x"
},
"scripts": {
"prepare": "is-ci || husky",
"build": "pnpm run clean && tsc -p tsconfig.build.json",
"build:watch": "tsc -p tsconfig.build.json -w",
"build:type-check": "tsc -p tsconfig.build.json --noEmit",
"test": "node --trace-warnings --experimental-vm-modules 'node_modules/jest/bin/jest.js'",
"test:watch": "node --trace-warnings --experimental-vm-modules 'node_modules/jest/bin/jest.js' --watch",
"test:coverage": "node --trace-warnings --experimental-vm-modules 'node_modules/jest/bin/jest.js' --no-cache --coverage",
"format": "prettier --write \"**/*.{ts,js,md,json,yaml,yml}\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"docs:build": "pnpm run build && rm -rf ./docs && ./node_modules/.bin/jsdoc -c jsdoc.json",
"docs:start": "pnpm run docs:build && ./node_modules/.bin/http-server -c-1 -o docs",
"preversion": "pnpm run lint",
"clean": "rm -rf ./dist ./docs",
"start": "node dist/esm/index.js"
},
"lint-staged": {
"(/test/.*\\.test\\.ts)$": [
"npm run test"
],
"*.{ts,js}": [
"npm run lint"
],
"*.{ts,js,json,md,yaml}": [
"npm run format"
]
},
"devDependencies": {
"@faker-js/faker": "8.4.1",
"@jest/globals": "^29.7.0",
"@smithy/shared-ini-file-loader": "2.3.1",
"@types/jest": "^29.5.12",
"@types/node": "20.11.20",
"@types/serverless": "3.12.22",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"aws-cdk-lib": "^2.80.0",
"constructs": "^10.3.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"http-server": "14.1.1",
"husky": "9.0.10",
"is-ci": "3.0.1",
"jest": "v30.0.0-alpha.6",
"jest-mock-extended": "3.0.5",
"jsdoc": "4.0.2",
"lint-staged": "^15.2.9",
"prettier": "3.2.5",
"serverless": ">=3.38.0",
"ts-jest": "29.2.4",
"typescript": "5.3.3"
},
"dependencies": {
"@aws-sdk/client-s3": "3.511.0",
"@aws-sdk/lib-storage": "3.511.0",
"globby": "^14.0.2",
"mrmime": "2.0.0",
"winston": "^3.11.0",
"zod": "3.23.8"
},
"peerDependencies": {
"aws-cdk-lib": "^2.80.0",
"constructs": "^10.0.0",
"serverless": ">=3.38.0"
},
"pnpm": {
"overrides": {
"es5-ext@>=0.10.0 <0.10.63": ">=0.10.63",
"follow-redirects@<=1.15.5": ">=1.15.6",
"tar@<6.2.1": ">=6.2.1",
"braces@<3.0.3": ">=3.0.3",
"ws@>=7.0.0 <7.5.10": ">=7.5.10",
"fast-xml-parser@<4.4.1": ">=4.4.1",
"axios@>=1.3.2 <=1.7.3": ">=1.7.4"
}
}
}