-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.79 KB
/
package.json
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
{
"name": "dogecoin-coinflip",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:front-end": "npm --prefix front-end run build",
"build:server": "tsc --skipLibCheck",
"dev": "concurrently \"nodemon\" \"npm run front-end:dev \"",
"front-end:dev": "npm --prefix front-end run dev",
"server:dev": "cross-env NODE_PATH=Server ts-node --require dotenv/config Server/index.ts",
"start:local": "cross-env npm run build:server && cross-env NODE_PATH=dist node --require dotenv/config dist/index.js",
"start": "npm run build:server && cross-env NODE_PATH=dist node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/cookie-parser": "1.4.2",
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/morgan": "1.9.3",
"@types/node": "16.11.11",
"@types/node-fetch": "2.5.12",
"@types/redis": "2.8.32",
"@types/uuid": "8.3.3",
"base58": "^2.0.1",
"bcrypt": "^5.0.1",
"bitcoinjs-lib": "^5.2.0",
"bitcore-lib": "^8.25.10",
"bitcore-lib-doge": "^8.25.10",
"bs58": "^4.0.1",
"bull": "^3.22.6",
"coininfo": "^5.1.0",
"coinkey": "^3.0.0",
"colors": "^1.4.0",
"concurrently": "^6.2.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"crypto-js": "^4.0.0",
"dogecoinjs": "^0.2.1",
"express": "^4.17.1",
"express-validator": "6.13.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "4.1.3",
"morgan": "^1.10.0",
"node-dogecoin": "^0.3.9",
"node-fetch": "2.6.6",
"nodemon": "^2.0.7",
"provable": "^0.2.3",
"redis": "^3.1.2",
"socket.io": "^4.1.2",
"ts-node": "10.4.0",
"typescript": "4.5.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"dotenv": "^10.0.0"
}
}