-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.17 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
{
"name": "@yourorg/lightning-talks",
"version": "0.1.0",
"description": "AWS CDK constructs for deploying a serverless Lightning Talks booking application",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourorg/lightning-talks.git"
},
"author": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"assets"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:assets": "rm -rf assets/lambdas && cp -r lambdas assets/lambdas",
"build:frontend": "cd frontend && npm ci && npm run build && rm -rf ../assets/frontend && cp -r dist ../assets/frontend",
"prepublishOnly": "npm run build:assets && npm run build:frontend && npm run build",
"cdk": "cdk",
"synth": "cdk synth",
"deploy": "cdk deploy",
"test": "jest"
},
"peerDependencies": {
"aws-cdk-lib": "^2.0.0",
"constructs": "^10.0.0"
},
"devDependencies": {
"aws-cdk-lib": "^2",
"constructs": "^10",
"aws-cdk": "^2",
"typescript": "^5",
"ts-node": "^10",
"ts-jest": "^29",
"jest": "^29",
"@types/jest": "^29",
"@types/node": "^22",
"esbuild": "^0.24"
}
}