-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
51 lines (51 loc) · 1.56 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
{
"name": "familink-api",
"version": "1.0.0-beta.0",
"description": "Training api project for the familink mobile application",
"main": "index.js",
"scripts": {
"test": "mocha --timeout 10000",
"lint": "eslint ./src ./index.js --ext .js",
"start": "node index.js",
"start:prod": "NODE_ENV=prod node index.js",
"start:dev": "NODE_ENV=dev MONGODB_ADDON_URI=mongodb://localhost MONGODB_ADDON_DB=familink node index.js",
"start:debug": "NODE_ENV=dev MONGODB_ADDON_URI=mongodb://localhost MONGODB_ADDON_DB=familink nodemon $NODE_DEBUG_OPTION index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bewizyu/familink-api.git"
},
"keywords": [
"Node",
"Express"
],
"author": "Nicolas Hodicq <nhodicq@bewizyu.com> (https://www.linkedin.com/in/nicolas-hodicq-707bb14b/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bewizyu/familink-api/issues"
},
"homepage": "https://github.com/bewizyu/familink-api#readme",
"dependencies": {
"bcrypt": "3.0.3",
"body-parser": "^1.17.2",
"chance": "^1.0.10",
"config": "^3.0.1",
"express": "^4.15.4",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.4",
"mongoose": "^5.4.4",
"mongoose-type-mail": "^1.0.0",
"mongoose-unique-validator": "^2.0.2",
"morgan": "^1.8.2",
"winston": "^3.1.0"
},
"devDependencies": {
"chai": "^4.1.1",
"chai-http": "^4.2.1",
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.7.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.9"
}
}