forked from Xconfess/Xconfess
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 3.27 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 3.27 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
{
"name": "xconfess",
"private": true,
"workspaces": [
"xconfess-backend",
"xconfess-contracts",
"xconfess-frontend"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"dev": "concurrently \"npm run dev --workspace=xconfess-backend\" \"npm run dev --workspace=xconfess-frontend\"",
"dev:backend": "npm run dev --workspace=xconfess-backend",
"dev:frontend": "npm run dev --workspace=xconfess-frontend",
"backend:build": "npm run build --workspace=xconfess-backend",
"backend:test": "npm run test --workspace=xconfess-backend",
"backend:test:e2e": "npm run test:e2e --workspace=xconfess-backend",
"backend:lint": "npm run lint --workspace=xconfess-backend",
"contract:build": "npm run build --workspace=xconfess-contracts",
"contract:build:release": "npm run build:release --workspace=xconfess-contracts",
"contract:test": "npm run test --workspace=xconfess-contracts",
"contract:test:integration": "npm run test:integration --workspace=xconfess-contracts",
"contract:lint": "npm run lint --workspace=xconfess-contracts",
"contract:fmt": "npm run fmt --workspace=xconfess-contracts",
"contract:fmt:check": "npm run fmt:check --workspace=xconfess-contracts",
"contract:clean": "npm run clean --workspace=xconfess-contracts",
"contract:deploy:testnet": "npm run deploy:testnet --workspace=xconfess-contracts",
"build": "npm run backend:build && npm run contract:build:release",
"test": "npm run backend:test && npm run contract:test",
"lint": "npm run backend:lint && npm run contract:lint",
"frontend:build": "npm run build --workspace=xconfess-frontend",
"frontend:test": "npm run test --workspace=xconfess-frontend",
"frontend:test:smoke": "npm run test:smoke --workspace=xconfess-frontend",
"frontend:lint": "npm run lint --workspace=xconfess-frontend",
"ci:backend": "npm run backend:build && npm run backend:lint && npm run backend:test",
"ci:frontend": "npm run frontend:lint && npm run frontend:test && npm run frontend:build",
"ci:contract": "npm run contract:fmt:check && npm run contract:lint && npm run contract:test && npm run contract:build:release",
"ci": "npm run ci:backend && npm run ci:frontend && npm run ci:contract"
},
"dependencies": {
"@faker-js/faker": "^10.2.0",
"@nestjs-modules/ioredis": "^2.0.2",
"@nestjs/common": "^11.1.17",
"@nestjs/core": "^11.1.17",
"@nestjs/event-emitter": "^3.0.1",
"@nestjs/mapped-types": "^2.1.0",
"@nestjs/testing": "^11.1.5",
"@nestjs/typeorm": "^11.0.0",
"@radix-ui/react-dialog": "^1.1.15",
"@stellar/freighter-api": "^6.0.1",
"@stellar/stellar-sdk": "^14.4.3",
"express": "^5.1.0",
"ioredis": "^5.6.1",
"reflect-metadata": "^0.2.2",
"sanitize-html": "^2.17.0",
"typeorm": "^0.3.28"
},
"devDependencies": {
"@babel/preset-env": "^7.29.0",
"@babel/preset-typescript": "^7.28.5",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"@types/sanitize-html": "^2.16.0",
"babel-jest": "^30.2.0",
"concurrently": "^8.2.2",
"jest": "^30.0.5",
"minimatch": "^9.0.5",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2"
},
"packageManager": "npm@10.9.3",
"overrides": {
"rxjs": "7.8.2"
}
}