-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 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
36
37
{
"name": "project-3-crowdfunding-app",
"version": "1.0.0",
"description": "A secure crowdfunding app for admin users and potential donors to network ",
"main": "server.js",
"scripts": {
"test": "jest",
"start": "node server.js",
"watch": "nodemon server.js",
"seed": "cd server && node seeders/seed.js",
"develop": "concurrently \"cd server && npm run start\" \"cd client && npm start\"",
"build": "cd client && npm run build",
"install": "cd server && npm i && cd ../client && npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/min-hinthar/project-3-crowdfunding-app.git"
},
"keywords": [
"crowdfunding",
"app",
"donations"
],
"author": "Alexa, Elaine, Min",
"license": "MIT",
"bugs": {
"url": "https://github.com/min-hinthar/project-3-crowdfunding-app/issues"
},
"homepage": "https://github.com/min-hinthar/project-3-crowdfunding-app#readme",
"devDependencies": {
"concurrently": "^7.4.0",
"nodemon": "^2.0.20"
},
"dependencies": {
"jsonwebtoken": "^8.5.1"
}
}