-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 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": "nodejs-typescript-fargate-starter",
"version": "1.0.0",
"description": "deploys fargate with infra as code for a nodejs app",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "ts-node appserver/src/server.ts",
"dev": "ts-node-dev --respawn appserver/src/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Swolebrain/nodejs-typescript-fargate-starter.git"
},
"keywords": [
"nodejs",
"infrastructure",
"as",
"code"
],
"author": "swolebrain",
"license": "MIT",
"bugs": {
"url": "https://github.com/Swolebrain/nodejs-typescript-fargate-starter/issues"
},
"homepage": "https://github.com/Swolebrain/nodejs-typescript-fargate-starter#readme",
"bin": {
"cdk": "build/bin/cdk.js"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.5.2",
"@types/node": "^10.17.27",
"@types/prettier": "2.6.0",
"aws-cdk": "2.39.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.2"
},
"dependencies": {
"aws-cdk-lib": "2.39.0",
"constructs": "^10.0.0",
"express": "^4.18.1",
"source-map-support": "^0.5.21"
}
}