-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.43 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
{
"name": "next-blockchain",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prenoobchain": " yarn --cwd ./backend install",
"noobchain": " yarn --cwd ./ install ",
"postnoobchain": " npm run nodenetwork",
"nodenetwork": "concurrently \"npm run blockchain\" \"npm run client\" \"npm run node_2\" \"npm run node_3\" \"npm run node_4\" \"npm run node_5\"",
"blockchain": "nodemon --watch dev -e js backend/networkNode.js 3001 http://localhost:3001",
"client": "npm run dev",
"node_2": "nodemon --watch dev -e js backend/networkNode.js 3002 http://localhost:3002",
"node_3": "nodemon --watch dev -e js backend/networkNode.js 3003 http://localhost:3003",
"node_4": "nodemon --watch dev -e js backend/networkNode.js 3004 http://localhost:3004",
"node_5": "nodemon --watch dev -e js backend/networkNode.js 3005 http://localhost:3005"
},
"dependencies": {
"axios": "^0.24.0",
"bootstrap": "^5.1.3",
"bootstrap-icons": "^1.7.0",
"concurrently": "^6.4.0",
"next": "12.0.3",
"react": "17.0.2",
"react-bootstrap": "^2.0.2",
"react-dom": "17.0.2",
"react-toastify": "^8.1.0",
"recoil": "^0.5.2"
},
"devDependencies": {
"eslint": "7",
"eslint-config-next": "12.0.3"
}
}