-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.31 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
{
"name": "chatbot",
"version": "0.1.0",
"private": true,
"main": "./bin/www",
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"lint": "eslint . --ext .js",
"lint-fix": "eslint . --ext .js --fix",
"mocha": "mocha ./test",
"test": "npm run lint && npm run mocha",
"doc": "jsdoc -c jsdoc.conf.json",
"pre-push": "npm run lint && npm run test && npm run doc",
"api-doc": "aglio -i ./docs/api/api.apib -o ./docs/api/index.html",
"docs": "npm run doc && npm run api-doc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blurtech/bot-backend.git"
},
"bugs": {
"url": "https://github.com/blurtech/bot-backend/issues"
},
"dependencies": {
"cookie-parser": "1.4.4",
"cors": "2.8.5",
"debug": "4.1.1",
"express": "4.16.4",
"express-session": "1.15.6",
"fuzzball": "1.2.0",
"http-errors": "1.6.3",
"mongoose": "5.4.22",
"morgan": "1.9.1",
"passport-vkontakte": "0.3.2",
"pug": "2.0.3"
},
"devDependencies": {
"aglio": "2.3.0",
"chai": "4.2.0",
"chai-http": "4.2.1",
"coveralls": "3.0.3",
"cryptiles": "4.1.3",
"eslint": "5.15.3",
"hoek": "6.1.2",
"jsdoc": "3.5.5",
"mocha": "6.0.2",
"nodemon": "1.18.10",
"nyc": "13.3.0",
"supertest": "4.0.2"
}
}