forked from Dan4ykS/Shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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": "shop",
"version": "1.0.0",
"description": "Shop on NodeJs and React",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production JWTSECRET=secret-key-string MONGOURL=mongodb+srv://admin:[email protected]/shop BASEURL=http://localhost:3000 node index.js",
"server": "nodemon index.js",
"client": "npm run start --prefix client",
"client-build": "npm run build --prefix client",
"dev": "cross-env NODE_ENV=development concurrently \"npm run server\" \"npm run client\""
},
"keywords": [
"node",
"js",
"web",
"mern",
"react"
],
"author": "Sokolov Daniil <[email protected]>",
"license": "ISC",
"devDependencies": {
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
"nodemon": "^2.0.3"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^3.23.3",
"jsonwebtoken": "^8.5.1",
"moment": "^2.27.0",
"mongoose": "^5.9.27",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemailer": "^6.4.11",
"vhost": "^3.0.2",
"voca": "^1.4.0"
}
}