forked from TheDevPath/Navi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.4 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
58
59
60
61
62
63
64
65
{
"name": "navi",
"version": "0.0.1",
"description": "Open source project for Grow with Google Udacity Scholarship Challenge - Navigation app using offline first strategy and google maps api",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"client": "npm run start --prefix client",
"server": "nodemon server.js",
"server:inspect": "nodemon --inspect server.js",
"test": "concurrently \"npm run test-server\" \"npm run test-client\"",
"test-server": "cross-env NODE_ENV=test mocha tests --timeout 10000 -r chai/register-expect",
"test-watch": "nodemon --exec 'npm test'",
"test-client": "npm test --prefix client",
"heroku-postbuild": "cd client/ && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"engines": {
"node": ">=8.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/TheDevPath/Navi.git"
},
"contributors": [
"Bryan Sharpley (https://github.com/motosharpley)",
"Christopher Gates (https://github.com/tophergates)",
"Raegan Millhollin (https://github.com/desdemonhu)",
"Peter Matthews (https://github.com/pjdmatts)",
"John Kwening (https://github.com/jkwening)",
"Vasanth (https://github.com/Vasanthkesavan)",
"Travis Haley (https://github.com/Mallek",
"Eddie Ford (https://github.com/seckboy)",
"Chris Young (https://github.com/someyoungideas)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/TheDevPath/googleMaps-offline-navigator/issues"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"concurrently": "^3.5.1",
"cross-env": "^5.1.3",
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"mocha": "^5.0.0",
"nodemon": "^1.14.11",
"superagent": "^3.8.2",
"supertest": "^3.0.0"
},
"dependencies": {
"@google/maps": "^0.4.5",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"helmet": "^3.9.0",
"jsonwebtoken": "^8.1.1",
"mongodb": "^3.0.2",
"mongoose": "^5.0.1",
"morgan": "^1.9.0"
}
}