-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.09 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
{
"name": "cookies-ecommerce",
"version": "1.0.0",
"description": "MERN e-commerce site",
"main": "server.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm run build:dev --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "npm run build --prefix client",
"postbuild": "npm run client-install && npm run build"
},
"author": "Renisha Christie A",
"license": "MIT",
"dependencies": {
"@types/passport": "^1.0.3",
"bcryptjs": "^2.4.3",
"concurrently": "^5.2.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.5.9",
"mongoose": "^5.9.19",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"validator": "^13.1.1"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}