-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.94 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
{
"name": "structify-monorepo",
"version": "1.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"description": "Professional open-source developer productivity platform scaffolding applications",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,js,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md,yml,yaml}\"",
"test": "turbo test",
"typecheck": "turbo typecheck",
"clean": "turbo clean",
"verify:phase-1-3": "node scripts/verify-phase-1-3.js",
"verify:phase-4": "node scripts/verify-phase-4.js",
"verify:phase-4-final": "node scripts/verify-phase-4-final.js",
"verify:phase-5": "node scripts/verify-phase-5.js",
"verify:phase-5-5": "node scripts/verify-phase-5-5.js",
"verify:phase-6": "node scripts/verify-phase-6.js",
"verify:phase-6-final": "node scripts/verify-phase-6-final.js",
"verify:phase-7": "node scripts/verify-phase-7.js",
"verify:phase-7-final": "node scripts/verify-phase-7-final.js",
"verify:phase-8": "node scripts/verify-phase-8.js",
"verify:phase-8-1": "node scripts/verify-phase-8-1.js",
"verify:phase-8-2": "node scripts/verify-phase-8-2.js",
"verify:phase-8-2-final": "node scripts/verify-phase-8-2-final.js",
"verify:phase-9": "node scripts/verify-phase-9.js",
"verify:phase-9-12": "node scripts/verify-phase-9-12.js",
"verify:init-wizard-ux": "node scripts/verify-init-wizard-ux.js",
"verify:backend-predefined": "node scripts/verify-backend-predefined-templates.js",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^8.57.0",
"@types/node": "^20.17.6",
"eslint": "^8.57.0",
"husky": "^9.1.7",
"prettier": "^3.3.2",
"tsup": "^8.1.0",
"turbo": "^2.0.4",
"typescript": "^5.5.2",
"typescript-eslint": "^7.15.0",
"vitest": "^1.6.0"
},
"packageManager": "npm@11.12.1"
}