forked from garimamiet/nft-minting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
{
"name": "devconnector",
"version": "1.0.0",
"description": "Social network for developers",
"main": "server.js",
"scripts": {
"start": "node server",
"server": "nodemon --quiet server",
"client": "npm start --prefix client",
"admin": "npm start --prefix admin",
"client-install": "npm install --prefix client",
"admin-install": "npm install --prefix admin",
"installall": "concurrently \"npm install\" \"npm run client-install\" \"npm run admin-install\"",
"dev": "concurrently \"npm run server\" \"npm run client\" \"npm run admin\""
},
"author": "Brad Traversy",
"license": "MIT",
"dependencies": {
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"child_process": "^1.0.2",
"client": "file:client",
"config": "^3.3.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"express": "^4.17.1",
"express-validator": "^6.8.1",
"fs": "^0.0.1-security",
"gravatar": "^1.8.1",
"https": "^1.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.8",
"normalize-url": "^5.3.0",
"path": "^0.12.7",
"request": "^2.88.2",
"selfsigned": "^2.1.1",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.6"
}
}