-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.22 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.22 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
{
"name": "cloudblocks",
"private": true,
"version": "0.53.0",
"description": "Visual cloud learning tool for beginners — learn cloud architecture patterns with guided templates and export Terraform starter code",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/yeongseon/cloudblocks.git"
},
"homepage": "https://github.com/yeongseon/cloudblocks#readme",
"bugs": {
"url": "https://github.com/yeongseon/cloudblocks/issues"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"build:packages": "pnpm --filter @cloudblocks/schema build && pnpm --filter @cloudblocks/domain build",
"dev": "pnpm run build:packages && pnpm --filter @cloudblocks/web dev",
"build": "pnpm run build:packages && pnpm --filter @cloudblocks/web build",
"build:web": "pnpm --filter @cloudblocks/web build",
"typecheck": "tsc -b",
"lint": "pnpm -r --filter './packages/*' --filter @cloudblocks/web lint",
"lint:api": "cd apps/api && python3 -m ruff check .",
"lint:all": "pnpm run lint && pnpm run lint:api",
"test": "pnpm run build:packages && pnpm -r --parallel run test",
"test:web": "pnpm --filter @cloudblocks/web test",
"test:api": "cd apps/api && python3 -m pytest",
"test:all": "pnpm run test && pnpm run test:api",
"preview": "pnpm --filter @cloudblocks/web preview",
"clean": "pnpm -r exec rm -rf node_modules dist .turbo",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,css,md,yml,yaml}": [
"prettier --write"
]
},
"keywords": [
"cloud-learning",
"beginner",
"cloud-architecture",
"terraform-starter",
"infrastructure-as-code",
"visual-builder",
"learning-tool",
"guided-templates",
"terraform",
"multi-cloud",
"react",
"svg"
],
"author": "yeongseon",
"license": "Apache-2.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.15.0",
"devDependencies": {
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1"
}
}