-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.84 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.84 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
{
"name": "@moult/root",
"version": "0.0.1",
"description": "moult root workspace.",
"private": true,
"workspaces": {
"packages": [
"layers/**",
".github/actions/**"
]
},
"scripts": {
"install-cli-tools": "cd layers/shared/typescript/cli && yarn install && yarn build && npm link",
"setup": "yarn install-cli-tools",
"deploy": "turbo run deploy",
"destroy": "ts-node scripts/destroy.ts",
"prep:test": "turbo run generate-env",
"test": "turbo run test --stream",
"clients:web": "turbo run start --filter='@moult/experience-web-*'",
"clients:web:live": "turbo run dev --filter='@moult/experience-web-*'",
"shared": "turbo run build --filter='@shared/*'",
"shared:live": "turbo run build:watch --filter='@shared/*' --stream",
"actions": "turbo run build --filter='@moult/deploy-deployables-action'",
"actions:live": "lerna run build:watch --scope='@moult/deploy-deployables-action' --stream",
"docs": "typedoc"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.782.0",
"@aws-sdk/client-sqs": "^3.782.0",
"@aws-sdk/lib-storage": "^3.782.0",
"aws-sdk": "^2.1692.0",
"axios": "^1.8.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michael-codesjs/moult.git"
},
"author": "Michael Phiri",
"license": "MIT",
"bugs": {
"url": "https://github.com/michael-codesjs/moult/issues"
},
"homepage": "https://github.com/michael-codesjs/moult#readme",
"devDependencies": {
"@types/chance": "^1.1.3",
"@types/ora": "^3.2.0",
"@types/prettier": "^2.7.2",
"chalk": "4.0",
"lerna": "^6.5.1",
"ora": "4.0",
"prettier": "^3.5.3",
"ts-node": "^10.9.1",
"turbo": "^2.5.3",
"typedoc": "^0.23.27",
"typescript": "^4.9.5"
},
"packageManager": "yarn@1.22.22",
"resolutions": {
"graphql": "^16.8.1"
}
}