-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
118 lines (118 loc) · 3.15 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
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "builda",
"version": "5.2.3",
"bin": {
"builda": "dist/index.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"description": "The everything generator",
"keywords": [
"node",
"components",
"generator",
"react",
"sass",
"stylus",
"less",
"css",
"jest",
"storybook",
"typescript",
"blueprint",
"prefab"
],
"files": [
"dist"
],
"scripts": {
"start": "node dist/index.js",
"dev": "yarn build && concurrently --kill-others \"tsup src/index.ts --watch\" \"tsc-alias -w\"",
"debug": "node dist/scripts/debug.js",
"generate-blueprint": "node dist/scripts/generate-blueprint-registry.js",
"build": "rm -rf ./dist && node ./generate-globals.js && tsup src/index.ts --dts --minify --format cjs,esm --target node14 --outDir dist",
"test": "jest",
"copyfiles": "cp -r ./src/data ./dist",
"lint:json": "eslint **/*.json --fix",
"prettier-check": "prettier --check .",
"prettier-write": "prettier --write .",
"update-module-schema": "ts-json-schema-generator --path ./src/types/module-registry.d.ts --out ./src/data/module-registry-schema.json",
"postbuild": "tsc-alias && yarn copyfiles",
"preflight": "yarn build && yarn lint:json && yarn prettier-write && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spacenectar/builda"
},
"author": {
"name": "Alex Foxleigh",
"url": "https://github.com/foxleigh81"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/spacenectar/builda/issues"
},
"homepage": "https://www.builda.app",
"dependencies": {
"ajv": "^8.11.0",
"axios": "^0.27.2",
"chalk": "4.1.2",
"chokidar": "^3.5.3",
"execa": "5.1.1",
"glob": "^8.0.3",
"inquirer": "8.2.4",
"markdownlint": "^0.25.1",
"node-fetch": "^3.2.10",
"prettier": "^2.6.2",
"simple-git": "^3.14.1",
"tar": "^6.1.11",
"yargs": "^17.4.1"
},
"devDependencies": {
"@types/concat-stream": "^2.0.0",
"@types/cross-spawn": "^6.0.2",
"@types/glob": "^8.0.0",
"@types/inquirer": "^8.2.1",
"@types/jest": "^28.1.4",
"@types/node": "^17.0.25",
"@types/pretty": "^2.0.1",
"@types/tar": "^6.1.2",
"@types/tar-fs": "^2.0.1",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"concat-stream": "^2.0.0",
"concurrently": "^7.4.0",
"cross-spawn": "^7.0.3",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.5.0",
"eslint-output": "^3.0.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.6.1",
"mock-stdin": "^1.0.0",
"ts-jest": "^29.1.1",
"ts-json-schema-generator": "^1.2.0",
"tsc-alias": "^1.7.0",
"tsup": "^7.1.0",
"typescript": "^4.6.3",
"typescript-eslint": "^0.0.1-alpha.0"
},
"resolutions": {
"semver": "^7.5.4"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"yarn lint:ts"
],
"*.json": [
"prettier --write",
"yarn lint:json"
],
"*.md": [
"prettier --write"
]
}
}