-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.56 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
62
63
64
{
"name": "server",
"version": "1.0.0",
"description": "server",
"main": "index.js",
"scripts": {
"start": "set NODE_ENV=production && nodemon server/index.js",
"server": "set NODE_ENV=production && nodemon server/index.js",
"server:dev": "set NODE_ENV=development && nodemon server/index.js",
"client": "npm start --prefix client",
"dev": "cls && concurrently \"npm run server:dev\" \"npm run client\"",
"build": "npm install && cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oanapopescu93/casino"
},
"keywords": [
"casino",
"games",
"online",
"roulette",
"blackjack",
"slots",
"craps",
"race",
"keno",
"rabbit",
"poker",
"texas holdem",
"5 card draw"
],
"author": "Oana Popescu",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/oanapopescu93/test/issues"
},
"homepage": "https://github.com/oanapopescu93/casino#readme",
"dependencies": {
"axios": "^1.3.6",
"bitcoinjs-lib": "^6.1.3",
"bitcore-explorers": "^1.0.1",
"body-parser": "^1.20.2",
"concurrently": "^8.2.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"jsonwebtoken": "^9.0.0",
"mysql": "^2.18.1",
"nodemailer": "^6.9.4",
"nodemon": "^2.0.22",
"path": "^0.12.7",
"paypal-rest-sdk": "^1.8.1",
"socket.io": "^4.5.4",
"stripe": "^12.18.0"
},
"nodemonConfig": {
"ignore": [
"server/json/*"
]
}
}