-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 1.2 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
{
"name": "challenge04-datatypes",
"author": "Wellington S. Almeida (WellsSA)",
"version": "1.0.0",
"description": "This is the official repository of the 4th EW.IT code challenge. Which is a Producer/Consumer Application where you can manually view and recommend cryptos on the Producer side & plot charts and manage your recommendation wallet on the Consumer side.",
"license": "MIT",
"keywords": [],
"main": "src/index.js",
"type": "module",
"scripts": {
"producer": "node --experimental-json-modules --experimental-top-level-await src",
"producer:dev": "nodemon --exec npm run producer",
"consumer": "node --experimental-json-modules --experimental-top-level-await src/consumer-cli.js",
"consumer:dev": "nodemon --exec npm run consumer",
"provider": "npx json-server --watch src/provider-server.json --port 3001"
},
"dependencies": {
"asciichart": "^1.5.25",
"axios": "^0.25.0",
"chalk": "^5.0.0",
"chalk-table": "^1.0.2",
"dotenv": "^16.0.0",
"draftlog": "^1.0.13",
"express": "^4.17.2",
"readline": "^1.3.0",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"yargs": "^17.3.1"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}