-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.75 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
{
"name": "businessofone",
"version": "1.0.0",
"private": true,
"description": "Solo business consulting and optimization",
"workspaces": [
"frontend"
],
"scripts": {
"orchestrate": "node scripts/agent-orchestrator.js",
"background": "echo \"Background agent started with prompt:\" && echo $CURSOR_BACKGROUND_AGENT_PROMPT",
"dev": "cd frontend && npm run dev",
"build": "cd frontend && npm run build",
"test": "jest",
"test:unit": "jest --selectProjects=unit",
"test:integration": "jest --selectProjects=integration",
"test:dom": "jest --selectProjects=dom",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --maxWorkers=2",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"precommit": "npm run lint && npm run test",
"validate": "npm run lint && npm run test:coverage"
},
"keywords": [
"business",
"of",
"one"
],
"author": "Utlyze",
"license": "MIT",
"dependencies": {
"next": "15.5.20",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"overrides": {
"postcss": "8.5.19"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/preset-env": "^7.29.5",
"@babel/preset-react": "^7.29.7",
"@jest/globals": "^30.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"babel-jest": "^30.4.1",
"brace-expansion": "^1.1.16",
"eslint": "^10.4.0",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-testing-library": "^7.16.2",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.3.0",
"jest-watch-typeahead": "^3.0.1"
}
}