-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.32 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.32 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
59
60
61
62
63
64
65
{
"name": "parkify",
"version": "1.0.0",
"description": "air bnb for parking spaces",
"main": "server.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint .",
"start": "node server.js",
"start-win": "SET DEBUG=parkify* && node server.js",
"db-on-win": "taskkill /fi \"IMAGENAME eq mongod.exe\" && rm -rf db > nul && mkdir db > nul && mongod --dbpath db",
"db-on": "mkdir -p ./db && mongod --dbpath ./db",
"db-off": "killall mongod",
"populate": "node ./test/prediction/generate-data.js",
"db-off-win": "taskkill /im mongod.exe /f",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --recursive -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test": "DEBUG='parkify*' && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --recursive -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test-debug": "DEBUG='parkify*' mocha --recursive",
"test-debug-win": "SET DEBUG=parkify* && mocha --recursive",
"test-win": "SET DEBUG=parkify* && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --recursive -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test-no-debug": "mocha --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nickjaz/parkify.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nickjaz/parkify/issues"
},
"homepage": "https://github.com/nickjaz/parkify#readme",
"dependencies": {
"aws-sdk": "^2.96.0",
"bcrypt": "^1.0.2",
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"cors": "^2.8.4",
"debug": "^3.0.0",
"del": "^3.0.0",
"dotenv": "^4.0.0",
"express": "^4.15.4",
"faker": "^4.1.0",
"http-errors": "^1.6.2",
"jsonwebtoken": "^7.4.2",
"mathjs": "^3.16.3",
"moment": "^2.18.1",
"mongoose": "^4.11.6",
"morgan": "^1.8.2",
"multer": "^1.3.0",
"node-geocoder": "^3.20.0",
"superagent": "^3.6.0"
},
"devDependencies": {
"chai": "^4.1.1",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"superagent": "^3.5.2",
"uuid": "^3.1.0"
}
}