-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.84 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
66
67
68
69
{
"name": "kiwi-node-server",
"version": "1.0.0",
"description": "Node.js server for Kiwi app",
"main": "server.js",
"scripts": {
"start": "NODE_CONFIG_DIR=../config NODE_ENV=prod node server.js",
"nodemon": "NODE_ENV=dev nodemon server.js",
"test": "NODE_ENV=test tape test/tests.js | tap-spec",
"test-cov": "rm -rf coverage && NODE_ENV=test istanbul cover node_modules/.bin/tape test/tests.js | tap-spec",
"documentation": "apidoc -i app/routes/api/ -o docs/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Musicoll/kiwi-node-server.git"
},
"keywords": [
"server",
"api",
"rest"
],
"author": "Eliott Paris, Jean Millot, Pierre Guillot",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Musicoll/kiwi-node-server/issues"
},
"homepage": "https://github.com/Musicoll/kiwi-node-server#readme",
"apidoc": {
"name": "Kiwi API",
"title": "Kiwi API Documentation",
"description": "Kiwi API Documentation",
"order": [
"Global",
"Documents",
"GetDocuments",
"NewDocument",
"GetDocument",
"UpdateDocument",
"DeleteDocument"
]
},
"dependencies": {
"bcryptjs": "^2.4.3",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"config": "^3.0.1",
"express": "^4.16.3",
"express-vue": "^5.8.2",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.4.6",
"mongoose-validator": "^2.1.0",
"nanoid": "^2.0.1",
"nodemailer": "^5.1.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"coveralls": "^3.0.2",
"eslint": "^5.12.1",
"istanbul": "^0.4.5",
"supertest": "^3.4.2",
"tap-spec": "^5.0.0",
"tape": "^4.9.2"
}
}