-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "cdk-amplify",
"version": "0.1.0",
"main": "bin/main.js",
"types": "bin/main.d.ts",
"bin": {
"cdk-amplify": "bin/cdk-amplify.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"cdk": "cdk",
"diff": "cdk diff",
"deploy": "cdk deploy",
"list": "cdk ls --long",
"synth": "cdk synth",
"client:watch": "parcel client/index.html",
"client:build": "parcel build client/app.js",
"cliet:exports": "cdk synth -j > tmp/stack.json"
},
"devDependencies": {
"@types/graphql": "^14.0.3",
"@types/node": "8.9.4",
"@vue/component-compiler-utils": "^2.2.0",
"aws-cdk": "0.12.0",
"graphql-appsync-transformer": "^1.0.28",
"graphql-dynamodb-transformer": "^1.0.28",
"graphql-transformer-core": "^1.0.28",
"typescript": "3.1.2",
"vue-template-compiler": "^2.5.17"
},
"dependencies": {
"@aws-amplify/auth": "^1.2.7",
"@aws-amplify/core": "^1.0.16",
"@aws-cdk/aws-appsync": "0.12.0",
"@aws-cdk/aws-cognito": "0.12.0",
"@aws-cdk/aws-dynamodb": "0.12.0",
"@aws-cdk/aws-iam": "0.12.0",
"@aws-cdk/cdk": "0.12.0",
"aws-sdk": "^2.338.0",
"parcel-bundler": "^1.10.3",
"vue": "^2.5.17",
"vue-hot-reload-api": "^2.3.1"
}
}