-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.22 KB
/
package.json
File metadata and controls
75 lines (75 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
72
73
74
75
{
"name": "prosto-platform",
"version": "0.0.0",
"description": "A TypeScript-based headless platform with a micro-core architecture and plug-in module extensibility",
"private": true,
"author": {
"name": "PROSTO SYSTEMS",
"url": "https://github.com/prosto-systems"
},
"license": "MIT",
"homepage": "https://github.com/prosto-systems/prosto-platform#readme",
"bugs": {
"url": "https://github.com/prosto-systems/prosto-platform/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/prosto-systems/prosto-platform.git"
},
"keywords": [
"prosto",
"headless",
"platform",
"typescript",
"micro-core",
"cms",
"content management system",
"admin panel",
"backend"
],
"type": "module",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "turbo typecheck",
"lint:architecture": "node ./scripts/lint-architecture.mjs",
"validate:dependency-policy": "node ./scripts/validate-dependency-policy.mjs",
"validate:module-graph": "node ./scripts/validate-module-graph.mjs",
"validate:public-api-boundary": "node ./scripts/validate-public-api-boundary.mjs",
"validate:runtime-policy": "node -e \"console.log('TODO Phase 05: validate:runtime-policy is not implemented yet')\"",
"test": "turbo test",
"test:contracts": "turbo test:contracts",
"test:lifecycle-determinism": "node -e \"console.log('TODO Phase 05: test:lifecycle-determinism is not implemented yet')\"",
"release:evidence": "node ./scripts/generate-release-evidence.mjs",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^22.0.0",
"dotenv": "^16.5.0",
"eslint": "^9.39.4",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"nodemon": "^3.1.14",
"p-limit": "^7.3.0",
"turbo": "^2.9.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2"
},
"workspaces": [
"packages/*",
"packages/*/*",
"examples/*"
],
"lint-staged": {
"*.{js,mjs,cjs,ts,mts,cts}": "eslint --fix"
},
"packageManager": "npm@10.32.1",
"engines": {
"node": ">=22.0.0",
"npm": ">=8.0.0"
}
}