-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.65 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
{
"name": "osml-demo",
"version": "1.0.0",
"license": "UNLICENSED",
"bin": {
"osml": "bin/app.ts"
},
"scripts": {
"build": "tsc",
"synth": "cdk synth",
"deploy": "cdk deploy --all --require-approval never --concurrency 10 || exit 1",
"destroy": "bash scripts/dev_destroy.sh full || exit 1",
"destroy:minimal": "bash scripts/dev_destroy.sh minimal || exit 1",
"clean": "bash scripts/dev_clean.sh",
"lint": "pre-commit run --all-files",
"watch": "tsc -w",
"prepare": "npm run-script build",
"integ:model-runner": "bash scripts/model_runner_integ.sh",
"integ:tile-server": "bash scripts/tile_server_integ.sh"
},
"dependencies": {
"ts-node": "^10.9.1"
},
"devDependencies": {
"@aws-sdk/client-iam": "^3.529.0",
"@cdklabs/cdk-enterprise-iac": "^0.0.490",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.0",
"@types/source-map-support": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"aws-cdk": "^2.150.0",
"aws-cdk-lib": "^2.150.0",
"cdk-nag": "^2.28.168",
"constructs": "^10.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"osml-cdk-constructs": "2.0.4",
"prettier": "^3.3.3",
"ts-jest": "^29.2.3",
"typescript": "^5.5.4"
},
"browser": {
"child_process": false
}
}