-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.41 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
52
53
54
55
56
57
{
"name": "parkify",
"version": "1.0.0",
"description": "Parkify app",
"main": "server.js",
"dependencies": {
"axios": "^0.16.2",
"bcrypt": "^1.0.3",
"body-parser": "^1.18.0",
"express": "^4.15.4",
"express-session": "^1.15.5",
"history": "^4.7.2",
"moment": "^2.18.1",
"mongoose": "^4.11.10",
"mongoose-deep-populate": "^3.0.0",
"mongoose-findorcreate": "^2.0.0",
"morgan": "^1.8.2",
"nightmare": "^2.10.0",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-google-oauth20": "^1.0.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"react-places-autocomplete": "^5.4.3",
"uuid": "^3.1.0"
},
"devDependencies": {
"concurrently": "^3.5.0",
"chai": "^4.1.2",
"mocha": "^3.5.0"
},
"scripts": {
"test": "mocha --recursive",
"start": "node server.js",
"deploy": "yarn build && git add . && git commit -m \"Building for production\" && git push heroku master",
"build": "cd client && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leelandmiller/parkify.git"
},
"keywords": [
"MERN",
"Node",
"Express",
"React",
"MongoDB",
"mongoose",
"passport"
],
"author": "MALL",
"license": "ISC",
"bugs": {
"url": "https://github.com/leelandmiller/parkify/issues"
},
"homepage": "https://github.com/leelandmiller/parkify#readme"
}