-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.06 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
{
"name": "Dex Exchange",
"version": "1.0.0",
"description": "Decentralized Exchange",
"main": "dexBack/index.js",
"scripts": {
"install:dex": "cd dex && npm install",
"install:dexBack": "cd dexBack && npm install",
"develop": "concurrently \"cd dexBack && node index.js\" \"cd dex && npm run start\"",
"start": "node dexBack/index.js",
"build:dex": "cd dex && npm run build",
"install": "cd dexBack && npm i && cd ../dex && npm i",
"postinstall": "npm run install:dex && npm run install:dexBack && npm run build:dex"
},
"repository": {
"type": "git",
"url": "https://github.com/kandekore/dex-exchange"
},
"keywords": [
"e-comerce"
],
"author": "D Kandekore",
"license": "ISC",
"bugs": {
"url": " "
},
"homepage": "https://github.com/kandekore/dex-exchange#readme",
"dependencies": {
"concurrently": "^7.6.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"moralis": "^2.11.1"
}
}