-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.42 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
{
"name": "editorial-tools-pinboard",
"version": "1.0.0",
"repository": "https://github.com/guardian/editorial-tools-pinboard",
"private": true,
"workspaces": [
"auth-lambda",
"bootstrapping-lambda",
"cdk",
"client",
"grid-bridge-lambda",
"notifications-lambda",
"users-refresher-lambda",
"workflow-bridge-lambda",
"database-bridge-lambda",
"archiver-lambda",
"email-lambda",
"shared"
],
"scripts": {
"graphql-refresh": "graphql-codegen --config graphql-refresh.yml",
"prettier-write": "prettier --write .",
"prettier-check": "prettier --check .",
"lint": "eslint . --ext .ts --ext .tsx",
"watch-client": "yarn --cwd 'client' watch 2>&1",
"watch-bootstrapping-lambda": "yarn --cwd 'bootstrapping-lambda' watch 2>&1",
"watch": "run-p --print-label watch-client watch-bootstrapping-lambda",
"test": "wsrun --parallel --fast-exit --prefix --report --exclude-missing test ",
"type-check": "wsrun --parallel --fast-exit --prefix --report type-check",
"build": "wsrun --parallel --fast-exit --prefix --report build ",
"prepare": "husky install",
"database-setup": "ts-node-dev shared/database/local/runDatabaseSetup.ts",
"database-migrate": "ts-node-dev shared/database/local/runDatabaseMigration.ts",
"generate-appsync-auth-token": "ts-node-dev bootstrapping-lambda/generateAppSyncAuthToken.ts"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-codegen/typescript": "^4.1.2",
"@guardian/node-riffraff-artifact": "0.3.2",
"@types/aws-lambda": "^8.10.114",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"@types/node-fetch": "^2.6.3",
"@types/prompts": "^2.0.14",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"esbuild": "^0.14.18",
"eslint": "^7.16.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.21.5",
"husky": "^7.0.0",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"lint-staged": ">=10",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.6",
"prompts": "^2.4.2",
"ts-jest": "^29.2.5",
"tsafe": "^1.0.1",
"typescript": "^5.7.3",
"wsrun": "^5.2.4"
},
"lint-staged": {
"**/*.{ts, tsx}": "eslint --fix",
"**/*": "prettier --write --ignore-unknown"
},
"engines": {
"node": ">=14.19.1"
},
"packageManager": "[email protected]"
}