forked from Movalabs-crew/mova-store
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.97 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
{
"name": "mova-store",
"version": "1.0.0",
"description": "Mova Store — e-commerce with Stellar blockchain payments",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Movalabs-crew/mova-store.git"
},
"keywords": [
"ecommerce",
"stellar",
"soroban",
"blockchain",
"crypto-payments",
"nextjs",
"web3"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"type-check": "tsc --noEmit --skipLibCheck",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"deploy:testnet": "./scripts/deploy-testnet.sh",
"prepare": "echo 'Mova Store ready!'"
},
"dependencies": {
"@emailjs/browser": "^4.4.1",
"@stellar/freighter-api": "^6.0.1",
"@stellar/stellar-sdk": "^16.2.0",
"@supabase/supabase-js": "^2.112.3",
"@vercel/og": "^0.6.2",
"fs": "^0.0.1-security",
"next": "14.2.5",
"next-auth": "^4.24.7",
"nextjs-toploader": "^1.6.12",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.2.1",
"react-transition-group": "^4.4.5",
"sharp": "^0.33.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.0",
"@testing-library/react": "^14.2.0",
"@types/next": "^9.0.0",
"@types/node": "^20.19.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/coverage-v8": "^1.2.0",
"@vitest/ui": "^1.2.0",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"jsdom": "^24.0.0",
"postcss": "^8",
"prettier": "^3.2.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.0",
"vitest": "^1.2.0"
},
"engines": {
"node": ">=18.0.0"
}
}