-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.58 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.58 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
{
"name": "@betty-blocks/cli",
"version": "26.0.2",
"description": "A Betty Blocks CLI",
"module": "./build/bb.js",
"type": "module",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/bettyblocks/cli"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"typecheck": "tsc",
"lint:check": "eslint ./src ./__tests__",
"lint": "eslint ./src ./__tests__ --fix",
"format:check": "prettier --check .",
"format": "prettier --write .",
"test": "bun test __tests__",
"test:watch": "bun test --watch __tests__",
"all": "bun test && bun run lint:fix && bun run format",
"clean": "rm -rf build/ && rm -rf node_modules/"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-angular": "^20.0.0",
"@commitlint/prompt-cli": "^20.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/app-root-path": "^1.2.4",
"@types/babel__generator": "7.27.0",
"@types/babel__traverse": "7.28.0",
"@types/bun": "^1.2.23",
"@types/fs-extra": "^8.0.0",
"@types/promise-sequential": "^1.1.2",
"@types/semver": "^7.7.1",
"app-root-path": "^2.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint": "^9.36.0",
"prettier": "3.6.2",
"semantic-release": "^24.2.9",
"typescript-eslint": "^8.45.0"
},
"dependencies": {
"@azure/ms-rest-js": "^2.7.0",
"@azure/storage-blob": "^10.3.0",
"@babel/generator": "7.28.3",
"@babel/parser": "7.28.4",
"@babel/traverse": "7.28.4",
"@babel/types": "7.28.4",
"@betty-blocks/component-sdk": "^1.91.4",
"@types/adm-zip": "0.5.7",
"@types/hapi__joi": "^16.0.0",
"@types/prompts": "^2.4.9",
"@types/react": "^16.9.9",
"@types/serve-handler": "^6.1.4",
"adm-zip": "0.5.16",
"case": "^1.6.3",
"chalk": "^5.6.2",
"change-case": "^5.4.4",
"commander": "^14.0.1",
"fs-extra": "11.3.2",
"joi": "18.0.1",
"jsdoc-api": "^7.1.0",
"jsonschema": "^1.5.0",
"minimist": "1.2.8",
"node-fetch": "3.3.2",
"ora": "9.0.0",
"prismjs": "1.30.0",
"prompts": "^2.4.2",
"semver": "^7.7.2",
"serve": "^11.1.0",
"serve-handler": "6.1.6",
"ts-node": "10.9.2",
"tsconfig-paths": "^3.15.0",
"typescript": "^5.9.2",
"webhead": "^1.1.3"
},
"bin": {
"bb": "./build/bb.js"
},
"resolutions": {
"@types/react": "^16.9.9",
"@types/minimatch": "5.1.2"
},
"files": [
"assets/",
"build/"
]
}