-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.48 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
{
"name": "papertrade",
"version": "0.1.0",
"type": "module",
"description": "Open-source BSV newsstand for pay-per-page publishing with BRC100 wallets.",
"license": "Open BSV License",
"copyright": "Copyright (c) 2026 P2PPSR",
"homepage": "https://papertrade.metanet.app",
"repository": {
"type": "git",
"url": "git+https://github.com/p2ppsr/PaperTrade.git"
},
"bugs": {
"url": "https://github.com/p2ppsr/PaperTrade/issues"
},
"keywords": [
"bsv",
"brc100",
"bitcoin-sv",
"payments",
"publishing",
"newsstand",
"react",
"express",
"typescript"
],
"scripts": {
"dev": "concurrently \"vite --host 0.0.0.0\" \"tsx watch src/server/server.ts\"",
"build:client": "vite build",
"build:server": "tsc -p tsconfig.server.json",
"build": "npm run build:client && npm run build:server",
"start": "node dist/server/server.js",
"migrate": "knex migrate:latest --knexfile knexfile.cjs",
"test": "vitest run",
"typecheck": "tsc --noEmit && tsc -p tsconfig.server.json --noEmit",
"lint": "ts-standard --project tsconfig.json \"src/client/**/*.tsx\" && ts-standard --project tsconfig.server.json \"src/server/**/*.ts\""
},
"dependencies": {
"@bsv/auth-express-middleware": "^2.1.7",
"@bsv/identity-react": "^1.1.14",
"@bsv/payment-express-middleware": "^2.1.5",
"@bsv/sdk": "^2.2.17",
"@bsv/wallet-toolbox": "^2.4.20",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^5.18.0",
"@mui/material": "^5.18.0",
"body-parser": "^1.20.3",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"knex": "^3.1.0",
"lucide-react": "^0.468.0",
"multer": "^2.1.1",
"mysql2": "^3.11.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.0",
"uuid": "^11.0.3"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.12",
"@types/node": "^22.10.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^5.1.1",
"concurrently": "^9.2.0",
"jsdom": "^25.0.1",
"ts-standard": "^12.0.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^7.2.7",
"vite-plugin-node-polyfills": "^0.28.0",
"vitest": "^4.1.8"
},
"engines": {
"node": ">=20.0.0"
},
"ts-standard": {
"ignore": [
"dist/**",
"build/**",
"migrations/**",
"vite.config.ts"
]
}
}