forked from Danielthweatt/DonationApp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.77 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.77 KB
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
52
53
54
55
56
57
58
{
"name": "donationapp",
"version": "1.0.0",
"engines": {
"node": "8.9.4",
"npm": "5.6.0"
},
"description": "This is a template for an app that accepts donations for a non-profit that implements it.",
"main": "server.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"test": "react-scripts test --env=jsdom",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Danielthweatt/DonationApp.git"
},
"author": "Cavan Wagg, Majid Jamaleldine, Maddy Fiksdal, Robert Queeney, Daniel Thweatt",
"license": "MIT",
"bugs": {
"url": "https://github.com/Danielthweatt/DonationApp/issues"
},
"homepage": "https://github.com/Danielthweatt/DonationApp",
"devDependencies": {
"concurrently": "^3.6.0",
"eslint": "^5.0.1",
"eslint-plugin-react": "^7.10.0",
"nodemon": "^1.17.5",
"react-social-icons": "^3.0.0"
},
"dependencies": {
"@material-ui/core": "^1.4.1",
"async-waterfall": "^0.1.5",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"connect-flash": "^0.1.1",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-http-to-https": "^1.1.4",
"express-session": "^1.15.6",
"if-env": "^1.0.4",
"jsdom": "^11.11.0",
"mongoose": "^5.2.1",
"node-sass-chokidar": "^1.3.3",
"nodemailer": "^4.6.7",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"react-test-renderer": "^16.4.1",
"stripe": "^6.2.1"
}
}