-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.37 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
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
{
"name": "newsletters-nx",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"preinstall": "./tools/scripts/preinstall.sh",
"dev": "USE_IN_MEMORY_STORAGE='true' nx run-many --target=serve --all",
"dev:s3": "USE_IN_MEMORY_STORAGE='false' nx run-many --target=serve --all",
"lint": "nx run-many --target=lint --all",
"build": "nx run-many --target=build --all",
"test": "nx run-many --target=test --all",
"generate:lib": "npx nx generate @nrwl/workspace:library --setParserOptionsProject --standaloneConfig --testEnvironment=node --",
"prepare": "husky install",
"generate-newsletters": "./tools/scripts/generate-newsletters.sh",
"postinstall": "npm install --prefix cdk",
"bundle:api": "npx nx build newsletters-api --configuration=production --outputFileName=index.js",
"bundle:ui": "npx nx build newsletters-ui --configuration=production",
"upgrade-nx": "nx migrate latest && nx migrate --run-migrations"
},
"engines": {
"node": ">=16.19.0",
"npm": ">=8.19.3"
},
"private": true,
"dependencies": {
"@aws-sdk/client-s3": "^3.363.0",
"@aws-sdk/client-ses": "^3.391.0",
"@aws-sdk/client-ssm": "^3.414.0",
"@aws-sdk/credential-providers": "^3.363.0",
"@emotion/css": "^11.10.5",
"@emotion/react": "11.10.6",
"@emotion/styled": "11.10.6",
"@fastify/static": "^6.9.0",
"@guardian/image": "^1.1.0",
"@guardian/source-foundations": "^8.0.0",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.11.10",
"@mui/x-date-pickers": "^6.6.0",
"@types/react-table": "^7.7.14",
"aws-sdk": "^2.1354.0",
"dayjs": "^1.11.8",
"fastify": "4.11.0",
"highlight.js": "^11.9.0",
"instead": "^1.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.5",
"react-router-dom": "6.4.3",
"react-table": "^7.8.0",
"tslib": "^2.3.0",
"zod": "^3.22.3"
},
"devDependencies": {
"@babel/preset-react": "^7.14.5",
"@emotion/babel-plugin": "11.10.6",
"@faker-js/faker": "^7.6.0",
"@guardian/eslint-config": "^2.0.3",
"@guardian/eslint-config-typescript": "^3.0.0",
"@guardian/prettier": "^2.1.5",
"@guardian/tsconfig": "^0.2.0",
"@jest/types": "^29.3.1",
"@nrwl/esbuild": "15.9.2",
"@nrwl/eslint-plugin-nx": "15.9.2",
"@nrwl/jest": "15.9.2",
"@nrwl/js": "15.9.2",
"@nrwl/linter": "15.9.2",
"@nrwl/node": "15.9.2",
"@nrwl/react": "15.9.2",
"@nrwl/vite": "15.9.2",
"@nrwl/workspace": "15.9.2",
"@testing-library/react": "14.0.0",
"@types/jest": "29.4.0",
"@types/node": "^18.14.2",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"@vitejs/plugin-react": "^3.0.0",
"@vitest/coverage-c8": "~0.25.8",
"@vitest/ui": "^0.25.8",
"babel-jest": "^29.4.1",
"esbuild": "0.17.5",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "^8.0.3",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"jest-environment-node": "^29.4.1",
"jsdom": "~20.0.3",
"nx": "15.9.2",
"prettier": "^2.6.2",
"react-test-renderer": "18.2.0",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"typescript": "4.9.5",
"vite": "^4.1.5",
"vite-plugin-eslint": "^1.8.1",
"vite-tsconfig-paths": "^4.0.2",
"vitest": "^0.25.8"
}
}