-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.67 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "community-app-event-service",
"version": "0.1.0",
"description": "Backend API used to manage events and event related content for community-app.",
"main": "./src/index.js",
"directories": {
"example": "examples",
"test": "test",
"src": "src"
},
"engines": {
"node": "9.4.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/valdero/community-app-event-service.git"
},
"author": "Valentin Abramenkov, Mauri Karlin",
"license": "ISC",
"bugs": {
"url": "https://github.com/valdero/community-app-event-service/issues"
},
"homepage": "https://github.com/valdero/community-app-event-service#readme",
"dependencies": {
"bcrypt": "^1.0.2",
"bluebird": "3.5.x",
"body-parser": "1.18.x",
"bookshelf": "0.12.x",
"change-case": "^3.0.1",
"connect-redis": "3.3.x",
"cookie-parser": "1.4.x",
"cors": "2.8.x",
"errorhandler": "1.5.x",
"express": "4.16.x",
"express-graceful-exit": "0.4.x",
"express-session": "1.15.x",
"geolib": "^2.0.22",
"ioredis": "3.2.x",
"joi": "13.1.x",
"knex": "0.14.x",
"lodash": "4.17.x",
"moment": "2.20.x",
"morgan": "^1.8.0",
"newrelic": "^2.6.1",
"passport": "0.4.x",
"passport-local": "1.0.x",
"pg": "7.4.x",
"winston": "2.4.x"
},
"devDependencies": {
"chai": "^4.1.2",
"david": "^11.0.0",
"doctoc": "^1.2.0",
"eslint": "^4.16.0",
"faker": "^4.1.0",
"istanbul": "^0.4.0",
"jscs": "^3.0.7",
"md5": "^2.0.0",
"mocha": "^5.0.0",
"node-debug": "^0.1.0",
"nodemon": "^1.3.7",
"password-generator": "^2.0.2",
"read": "^1.0.7",
"superagent": "^3.4.1",
"yargs": "^10.1.1"
},
"scripts": {
"postinstall": "bash ./tools/run-migrations.sh",
"start": "source .env && nodemon --watch ./src -e js src/index.js",
"debug": "source .env && node-debug --debug-brk=0 src/index.js",
"debug-test": "source .env-test && node-debug _mocha",
"test": "source .env-test && mocha",
"test-performance": "source .env-test && RUN_PERFORMANCE_TESTS=true REPORT_STEPS=20 RATING_COUNT=100000 mocha -g 'Performance'",
"test-coverage": "source .env-test && istanbul cover _mocha -- -R spec && open coverage/lcov-report/index.html",
"lint": "./tools/lint.sh",
"jscs": "jscs ./src ./test",
"eslint": "eslint --ext .js ./src ./test",
"doctoc": "echo 'Autogenerating table of contents..' && doctoc README.md",
"pandoc": "pandoc --toc --css docs/pandoc.css -s API.md -o api.html && open api.html",
"pandoc-docker": "docker run -v `pwd`:/source jagregory/pandoc -f markdown --toc --css docs/pandoc.css -t html5 -S API.md -o api.html && open api.html"
}
}