-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.62 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.62 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
{
"name": "ajosave",
"version": "0.1.0",
"private": false,
"description": "Trustless rotating savings circles (Ajo/Esusu) on the Stellar blockchain.",
"keywords": [
"stellar",
"soroban",
"savings",
"ajo",
"esusu",
"usdc",
"defi",
"nigeria"
],
"homepage": "https://www.ajosave.app",
"repository": {
"type": "git",
"url": "https://github.com/JosephOnuh/ajosave.git"
},
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"contract:build": "cd contracts && stellar contract build",
"contract:test": "cd contracts && cargo test",
"contract:deploy": "ts-node scripts/deploy-contract.ts",
"migrate": "ts-node scripts/migrate.ts up",
"migrate:down": "ts-node scripts/migrate.ts down",
"migrate:create": "node-pg-migrate create --migrations-dir migrations",
"prepare": "husky"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@stellar/freighter-api": "3.1.0",
"@sentry/nextjs": "^8.28.0",
"@stellar/stellar-sdk": "^12.3.0",
"@tanstack/react-query": "^5.40.0",
"axios": "^1.7.2",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"jose": "^5.6.3",
"next": "14.2.4",
"next-auth": "^4.24.7",
"node-pg-migrate": "^8.0.4",
"pino": "^9.3.2",
"pino-pretty": "^11.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.1",
"redis": "^5.12.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@playwright/test": "^1.44.1",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/node": "^20.14.9",
"@types/pg": "^8.11.6",
"@types/pino": "^7.0.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"eslint": "^8.57.0",
"fast-check": "4.6.0",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css}": "prettier --write"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
}
}