-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "cdk-nuxt",
"version": "2.4.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ferdinandfrank/cdk-nuxt.git"
},
"files": [
"lib",
"index.d.ts"
],
"main": "index.js",
"types": "index.d.ts",
"bin": {
"cdk-nuxt-init-server": "lib/cli/init-server.js",
"cdk-nuxt-init-static": "lib/cli/init-static.js",
"cdk-nuxt-deploy-server": "lib/cli/deploy-server.js",
"cdk-nuxt-destroy-server": "lib/cli/destroy-server.js",
"cdk-nuxt-deploy-static": "lib/cli/deploy-static.js"
},
"scripts": {
"build": "tsc",
"release": "yarn run build && yarn version && git push --follow-tags"
},
"devDependencies": {
"@types/node": "^20.10",
"fs": "^0.0.1-security",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@aws-cdk/aws-glue-alpha": "2.166.0-alpha.0",
"aws-cdk": "2.166.0",
"aws-cdk-lib": "2.166.0",
"constructs": "^10.2.31",
"shelljs": "^0.8.5"
},
"peerDependencies": {
"aws-cdk": "2.166.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}