forked from chingu-voyages/v30-bears-team-07
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.27 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
44
45
46
47
48
49
50
51
{
"name": "restofund",
"version": "0.1.0",
"description": "Crowdfunding application for restaurants.",
"main": "index.js",
"engines": {
"node": "14.x"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"server": "nodemon index.js",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\" "
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rammina/resto-fund.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rammina/resto-fund/issues"
},
"homepage": "https://github.com/Rammina/resto-fund#readme",
"dependencies": {
"@stripe/stripe-js": "^1.15.0",
"async": "^3.2.0",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cloudinary": "^1.22.0",
"concurrently": "^6.1.0",
"cors": "^2.8.5",
"date-fns": "^2.21.3",
"dotenv": "^9.0.1",
"express": "^4.17.1",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.6",
"mongoose": "^5.12.7",
"morgan": "^1.10.0",
"nocache": "^2.1.0",
"nodemon": "^2.0.7",
"stripe": "^8.150.0"
},
"devDependencies": {
"prettier": "^2.3.0"
}
}