forked from nexoraorg/chenaikit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.52 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.52 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
93
94
95
96
97
98
99
100
101
102
{
"name": "chenaikit",
"version": "0.1.0",
"description": "A TypeScript toolkit for building AI-powered blockchain applications",
"private": true,
"workspaces": [
"packages/*",
"examples/*",
"tests/*"
],
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r dev",
"test": "jest --coverage",
"test:core": "cd packages/core && jest --coverage",
"test:cli": "cd packages/cli && jest --coverage",
"test:backend": "cd backend && jest --coverage",
"test:frontend": "cd frontend && react-scripts test --coverage --watchAll=false",
"test:integration": "cd tests/integration && pnpm test",
"test:integration:ci": "cd tests/integration && ./run-tests.sh",
"test:watch": "jest --watch",
"test:ci": "jest --coverage --ci --watchAll=false --maxWorkers=2",
"test:unit": "jest --testPathIgnorePatterns=integration",
"test:all": "pnpm test && pnpm test:backend && pnpm test:frontend && pnpm test:integration",
"coverage": "jest --coverage && open coverage/lcov-report/index.html",
"coverage:report": "jest --coverage --coverageReporters=text-summary",
"lint": "pnpm -r lint",
"clean": "pnpm -r clean",
"type-check": "pnpm -r type-check",
"prepare": "husky install",
"backend:build": "cd packages/core && pnpm build && cd ../cli && pnpm build && cd ../../backend && pnpm build",
"blockchain:build": "cd contracts/credit-score && cargo build && cd ../fraud-detect && cargo build && cd ../common-utils && cargo build && cd ../governance && cargo build",
"blockchain:test": "cd contracts/governance && cargo test --lib",
"frontend:build": "cd examples/credit-scoring-app && pnpm build && cd ../wallet-chatbot && pnpm build && cd ../fraud-detection-service && pnpm build && cd ../../frontend && pnpm build"
},
"keywords": [
"stellar",
"soroban",
"ai",
"blockchain",
"typescript",
"sdk",
"credit-scoring",
"fraud-detection"
],
"author": "ChenAIKit Team",
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "^5.16.0",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.0.0",
"eslint-plugin-react-hooks": "^7.1.1",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"supertest": "^7.2.2",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nexoraorg/chenaikit.git"
},
"bugs": {
"url": "https://github.com/nexoraorg/chenaikit/issues"
},
"homepage": "https://github.com/nexoraorg/chenaikit#readme",
"packageManager": "pnpm@10.17.1+sha512.17c560fca4867ae9473a3899ad84a88334914f379be46d455cbf92e5cf4b39d34985d452d2583baf19967fa76cb5c17bc9e245529d0b98745721aa7200ecaf7a",
"dependencies": {
"@types/d3": "^7.4.3",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"d3": "^7.9.0",
"framer-motion": "^12.23.22",
"html2canvas": "^1.4.1",
"jspdf": "^3.0.3",
"react-spring": "^10.0.3",
"recharts": "^3.2.1",
"sqlite3": "^5.1.7"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"bcrypt"
],
"overrides": {
"react-scripts>jest-environment-jsdom": "27.5.1"
}
}
}