-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.83 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.83 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
{
"name": "@guardian/support-dotcom-components",
"version": "7.8.0",
"description": "Service to serve Reader Revenue components to dotcom",
"repository": "github: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",
"publish-dry-run": "pnpm publish --dry-run",
"publish": "pnpm publish",
"lint": "eslint .",
"prune-lint-suppressions": "pnpm lint --prune-suppressions",
"prettier:check": "prettier --check ./src",
"prettier:fix": "prettier --write ./src",
"test": "export stage=DEV; jest",
"riffraff": "node-riffraff-artifact"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@changesets/cli": "^2.26.2",
"@guardian/eslint-config": "^11.0.0",
"@guardian/node-riffraff-artifact": "^0.3.2",
"@guardian/prettier": "^8.0.1",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-replace": "^2.3.3",
"@types/body-parser": "^1.19.5",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.6",
"@types/express": "^5.0.0",
"@types/jest": "^24.0.25",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.throttle": "^4.1.7",
"@types/node": "^22.10.7",
"@types/seedrandom": "^3.0.1",
"babel-loader": "^9.1.3",
"body-parser": "^1.20.3",
"concurrently": "^6.2.0",
"eslint": "^9.24.0",
"eslint-plugin-react": "^7.33.2",
"fishery": "^0.3.0",
"globals": "15.14.0",
"inquirer": "^7.0.3",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"prettier": "^3.0.0",
"rollup": "^2.79.2",
"rollup-plugin-external-globals": "^0.13.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.1.1",
"ts-loader": "^9.2.5",
"ts-node-dev": "^2.0.0",
"tslib": "^2.5.3",
"typescript": "~5.5.2",
"typescript-json-schema": "^0.42.0",
"webpack": "^5.94.0",
"webpack-cli": "^4.7.2",
"webpack-merge": "^5.8.0",
"zod": "3.22.4"
},
"dependencies": {
"@guardian/libs": "22.0.1",
"@guardian/ophan-tracker-js": "2.6.1",
"@aws-sdk/client-s3": "^3.835.0",
"@aws-sdk/client-dynamodb": "^3.835.0",
"@aws-sdk/lib-dynamodb": "^3.835.0",
"@aws-sdk/credential-providers": "^3.835.0",
"@aws-sdk/client-cloudwatch": "^3.835.0",
"@aws-sdk/client-ssm": "^3.835.0",
"compression": "1.7.4",
"cors": "^2.8.5",
"date-fns": "^2.25.0",
"express": "^4.21.2",
"jsonschema": "^1.4.0",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"log4js": "^6.3.0",
"seedrandom": "^3.0.5",
"zod": "3.22.4"
},
"peerDependencies": {
"@guardian/libs": "^22.0.0",
"@guardian/ophan-tracker-js": "2.6.1",
"zod": "^3.22.4"
},
"packageManager": "pnpm@8.15.7"
}