-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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
{
"name": "mine-cloud",
"version": "0.1.0",
"bin": {
"mine-cloud": "dist/bin/mine-cloud.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"prettier-format": "prettier --config .prettierrc . --write",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"install-minecloud-config-pack": "node config-pack-installer.js"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.147",
"@types/jest": "^29.5.14",
"@types/node": "22.13.1",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"aws-cdk": "^2.178.2",
"esbuild": "^0.25.0",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"jest": "^29.7.0",
"prettier": "^3.5.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.7.3"
},
"dependencies": {
"aws-cdk-lib": "2.178.2",
"aws-lambda": "^1.0.7",
"aws-sdk": "^2.1692.0",
"axios": "^1.7.9",
"constructs": "^10.4.2",
"extract-zip": "^2.0.1",
"source-map-support": "^0.5.21",
"tweetnacl": "^1.0.3",
"uuid": "^11.0.5",
"uuidv4": "^6.2.13"
}
}