-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
49 lines (49 loc) · 1.5 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": "mobile-purchases",
"version": "1.0.0",
"description": "IOS receipt validation and purchase persistence",
"scripts": {
"clean": "rm -r tsc-target",
"build": "webpack --env production",
"build:dev": "webpack",
"test": "jest",
"test-lambda": "yarn build:dev && node ./tsc-target/test-launcher.js",
"android-price-rise": "AWS_PROFILE=mobile ts-node ./typescript/src/scripts/android-price-rise/runPriceRise.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guardian/mobile-purchases.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/guardian/mobile-purchases/issues"
},
"homepage": "https://github.com/guardian/mobile-purchases#readme",
"private": true,
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node-fetch": "^2.6.2",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"ts-loader": "^9.5.1",
"typescript": "^4.9.5",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"ts-node": "^10.4.0"
},
"dependencies": {
"@aws/dynamodb-data-mapper": "^0.7.3",
"@aws/dynamodb-data-mapper-annotations": "^0.7.3",
"@aws/dynamodb-expressions": "^0.7.3",
"@googleapis/androidpublisher": "22.0.0",
"@guardian/types": "^9.0.1",
"@okta/jwt-verifier": "^4.0.1",
"@types/aws-lambda": "8.10.145",
"@types/node": "^22.9.1",
"aws-sdk": "^2.1692.0",
"node-fetch": "2.6.7",
"source-map-support": "^0.5.21",
"typed-rest-client": "^2.1.0",
"zod": "^3.23.8"
}
}