-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.99 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.99 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@guardian/support-dotcom-components",
"version": "9.0.1",
"description": "Service to serve Reader Revenue components to dotcom",
"repository": {
"url": "https://github.com/guardian/support-dotcom-components"
},
"author": "The Guardian",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/dotcom/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build-server": "webpack --config webpack.prod.js",
"prestart": "webpack --config webpack.dev.js",
"start-watch": "webpack --config webpack.dev.js --watch",
"start-server": "stage=DEV PORT=8082 nodemon server-dist/server.js",
"start": "concurrently --kill-others \"pnpm start-watch\" \"pnpm start-server\"",
"build-dotcom": "rollup --config rollup.config.js",
"build-dotcom-types": "tsc --project tsconfig.types.json",
"lint": "eslint .",
"prune-lint-suppressions": "pnpm lint --prune-suppressions",
"prettier:check": "prettier --check ./src",
"prettier:fix": "prettier --write ./src",
"test": "export stage=DEV; jest"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/preset-typescript": "7.28.5",
"@changesets/cli": "2.30.0",
"@guardian/eslint-config": "14.0.0",
"@guardian/prettier": "10.0.0",
"@rollup/plugin-alias": "5.1.1",
"@rollup/plugin-babel": "6.1.0",
"@rollup/plugin-commonjs": "29.0.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-replace": "6.0.3",
"@types/compression": "1.8.1",
"@types/cors": "2.8.19",
"@types/express": "5.0.6",
"@types/jest": "30.0.0",
"@types/lodash.debounce": "4.0.9",
"@types/lodash.throttle": "4.1.9",
"@types/node": "25.3.3",
"@types/seedrandom": "3.0.8",
"babel-loader": "10.1.1",
"concurrently": "9.2.1",
"eslint": "9.39.2",
"eslint-plugin-react": "7.37.5",
"globals": "17.0.0",
"inquirer": "13.3.0",
"jest": "30.3.0",
"nodemon": "3.1.11",
"prettier": "3.8.1",
"rollup": "2.80.0",
"rollup-plugin-external-globals": "0.13.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-terser": "7.0.2",
"ts-jest": "29.4.6",
"ts-loader": "9.5.4",
"ts-node-dev": "2.0.0",
"tslib": "2.8.1",
"typescript": "5.5.4",
"typescript-json-schema": "0.42.0",
"webpack": "5.105.2",
"webpack-cli": "6.0.1",
"webpack-merge": "6.0.1",
"zod": "4.3.6"
},
"dependencies": {
"@aws-sdk/client-cloudwatch": "3.995.0",
"@aws-sdk/client-dynamodb": "3.995.0",
"@aws-sdk/client-s3": "3.995.0",
"@aws-sdk/client-ssm": "3.995.0",
"@aws-sdk/credential-providers": "3.1000.0",
"@aws-sdk/lib-dynamodb": "3.995.0",
"@guardian/libs": "26.1.0",
"@guardian/ophan-tracker-js": "2.8.0",
"@okta/jwt-verifier": "4.0.2",
"compression": "1.8.1",
"cors": "2.8.6",
"date-fns": "4.1.0",
"express": "4.22.1",
"jsonschema": "1.5.0",
"lodash.debounce": "4.0.8",
"lodash.throttle": "4.1.1",
"log4js": "6.9.1",
"lru-cache": "11.2.7",
"seedrandom": "3.0.5",
"zod": "4.3.6"
},
"peerDependencies": {
"@guardian/libs": "^22.0.0",
"@guardian/ophan-tracker-js": "2.8.0",
"zod": "^4.1.12"
},
"pnpm": {
"overrides": {
"fast-xml-parser": "5.5.6",
"minimatch@>=9.0.0 <9.0.7": "9.0.8",
"minimatch@<3.1.4": "3.1.5",
"serialize-javascript@<=7.0.2": "7.0.4",
"flatted": "3.4.2",
"handlebars@<4.7.9": "4.7.9",
"picomatch@<2.3.2": "2.3.2",
"picomatch@>=4.0.0 <4.0.4": "4.0.4",
"path-to-regexp@<0.1.13": "0.1.13"
}
},
"packageManager": "pnpm@10.33.0"
}