-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.47 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "gollyy",
"version": "0.0.2",
"description": "Golly Lottery",
"repository": "https://github.com/ali-habibzadeh/gollyy.git",
"author": "Ali Habibzadeh <ali.hci@icloud.com>",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"private": true,
"scripts": {
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"build": "tsc",
"copy:package": "cp package.json dist/package.json",
"copy:schemas": "cp -a src/@infrastructure/api/schemas/. dist/@infrastructure/api/schemas",
"copyall": "yarn copy:package && yarn copy:schemas",
"postbuild": "yarn copyall && cd dist && npm install --only=production && node-prune",
"watch": "tsc -w",
"test": "jest --config=jest.config.js",
"deploy": "yarn build && cdk deploy GollyyLottery --require-approval never --outputs-file outputs.json",
"deploy-static": "yarn build && cdk deploy GollyyLotteryStatic",
"destroy": "cdk destroy GollyyLottery -f",
"synth": "cdk synth"
},
"devDependencies": {
"@aws-cdk/aws-apigateway": "^1.80.0",
"@aws-cdk/aws-appsync": "1.80.0",
"@aws-cdk/aws-certificatemanager": "1.80.0",
"@aws-cdk/aws-cloudwatch": "1.80.0",
"@aws-cdk/aws-cognito": "1.80.0",
"@aws-cdk/aws-dynamodb": "1.80.0",
"@aws-cdk/aws-ec2": "1.80.0",
"@aws-cdk/aws-events": "1.80.0",
"@aws-cdk/aws-events-targets": "1.80.0",
"@aws-cdk/aws-lambda": "1.80.0",
"@aws-cdk/aws-route53": "1.80.0",
"@aws-cdk/aws-route53-targets": "1.80.0",
"@aws-cdk/core": "1.80.0",
"@types/aws-lambda": "8.10.67",
"@types/convict": "5.2.1",
"@types/jest": "26.0.19",
"@types/source-map-support": "0.5.3",
"@typescript-eslint/eslint-plugin": "4.11.0",
"@typescript-eslint/parser": "4.11.0",
"aws-cdk": "1.80.0",
"eslint": "7.16.0",
"eslint-config-airbnb-typescript": "12.0.0",
"eslint-config-prettier": "7.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.21.5",
"jest": "26.6.3",
"node-prune": "1.0.2",
"prettier": "2.2.1",
"ts-jest": "26.4.4",
"typescript": "4.1.3"
},
"dependencies": {
"@shiftcoders/dynamo-easy": "7.1.0",
"@types/uuid": "8.3.0",
"amazon-cognito-identity-js": "4.5.6",
"aws-amplify": "3.3.13",
"aws-sdk": "2.815.0",
"convict": "6.0.0",
"dayjs": "1.9.7",
"reflect-metadata": "0.1.13",
"source-map-support": "0.5.19",
"stripe": "8.129.0",
"uuid": "8.3.2"
}
}