-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.56 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.56 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
103
104
105
{
"name": "paybutton-server",
"version": "4.2.0",
"description": "The easiest way to accept eCash online",
"author": "Blockchain Ventures Corp.",
"repository": "https://github.com/PayButton/paybutton-server.git",
"license": "MIT",
"scripts": {
"dev": "dotenv -e .env -c -- next dev",
"build": "next build",
"initJobs": "JOBS_ENV=1 dotenv -e .env -c -- tsx jobs/initJobs.ts",
"initWSServer": "dotenv -e .env -c -- ts-node -O '{\"module\":\"commonjs\"}' -r tsconfig-paths/register ws-service/route.ts",
"start": "cross-env NODE_ENV=production node dist/index.js",
"prod": "yarn build && NODE_ENV=production next start",
"test": "dotenv -e .env.test -- ts-node -O '{\"module\":\"commonjs\"}' node_modules/jest/bin/jest.js",
"pretest": "dotenv -e .env.test -- prisma migrate reset --force",
"prisma": "dotenv -e .env -c -- prisma",
"docker": "bash ./scripts/docker-exec-shortcuts.sh",
"ci:integration:test": "yarn pretest && dotenv -e .env.test -- ts-node -O '{\"module\":\"commonjs\"}' node_modules/jest/bin/jest.js tests/integration-tests --forceExit",
"tarDebug": "tar cf debug.tar logs/ paybutton-config.json .env*",
"updateAllPrices": "./scripts/update-all-prices.sh",
"updateAllPriceConnections": "./scripts/update-all-price-connections.sh",
"lint-staged": "lint-staged"
},
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@paybutton/react": "latest",
"@prisma/client": "^6.14.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/helmet": "^4.0.0",
"@types/lodash": "^4.14.182",
"@types/socket.io": "^2.1.13",
"@types/uuid": "^8.3.4",
"axios": "^0.26.1",
"bitcoinjs-lib": "^6.0.2",
"bs58": "^5.0.0",
"chart.js": "^3.8.0",
"chronik-client": "^4.1.0",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"dotenv-cli": "^5.1.0",
"ecashaddrjs": "^2.0.0",
"express": "^4.17.1",
"helmet": "^4.4.1",
"lodash": "^4.17.21",
"micro": "^9.3.4",
"micro-cors": "^0.1.1",
"moment": "^2.29.4",
"moment-timezone": "^0.5.46",
"mysql2": "^2.3.3",
"next": "^13.2.3",
"node-mocks-http": "^1.11.0",
"prisma": "^6.3.1",
"prismjs": "^1.29.0",
"randexp": "^0.5.3",
"react": "^18.2.0",
"react-chartjs-2": "^4.2.0",
"react-color": "^2.19.3",
"react-dom": "^18.2.0",
"react-hook-form": "^7.32.2",
"react-select": "^5.8.3",
"react-spinners": "^0.14.1",
"react-table": "^7.8.0",
"react-timezone-select": "^3.2.8",
"react-to-print": "^3.1.0",
"simpledotcss": "^2.3.7",
"socket.io": "^4.4.1",
"socket.io-client": "^4.7.1",
"supertokens-node": "^21.1.0",
"supertokens-web-js": "^0.14.0",
"xecaddrjs": "^0.0.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^12.0.12",
"@types/nodemailer": "^6.4.16",
"@types/react": "^16.9.44",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"bullmq": "^3.3.5",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"ioredis": "^5.2.4",
"jest": "^29.7.0",
"jest-mock-extended": "^2.0.6",
"lint-staged": "^12.4.1",
"nodemailer": "^6.9.15",
"nodemon": "^2.0.4",
"redis": "^4.5.1",
"ts-jest": "^29.2.5",
"ts-node": "^8.10.2",
"tsx": "^3.12.1",
"typescript": "^5.7.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"node ./node_modules/eslint/bin/eslint.js --fix"
]
}
}