-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.25 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
{
"name": "",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "",
"scripts": {
"start": "NODE_ENV=production knex migrate:latest && node index.js",
"dev": "NODE_ENV=development ./node_modules/.bin/nodemon index.js",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --compilers js:babel-register --require babel-polyfill --reporter mocha-circleci-reporter test/*.js",
"lint": "eslint src/**/*.js",
"docs": "./node_modules/.bin/apidoc -i src/ -o docs",
"commit": "git-cz"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run lint && npm test",
"commit-msg": "validate-commit-msg"
}
},
"apidoc": {
"title": "bondebarras-server",
"url": "localhost:5000"
},
"repository": {
"type": "git",
"url": "https://github.com/vol7/bondebarras-server"
},
"dependencies": {
"@google/maps": "^0.3.1",
"babel-core": "^6.22.1",
"babel-polyfill": "^6.13.0",
"babel-preset-env": "^1.1.8",
"babel-preset-es2015-node5": "^1.2.0",
"babel-preset-stage-0": "^6.22.0",
"bcrypt": "^1.0.2",
"bluebird": "^3.4.6",
"bookshelf": "^0.10.3",
"bookshelf-camelcase": "^1.1.4",
"bookshelf-postgis": "^0.2.1",
"crypto": "^0.0.3",
"dotenv": "^4.0.0",
"glob": "^7.1.0",
"jsonwebtoken": "^7.1.9",
"knex": "^0.12.1",
"knex-cleaner": "^1.1.3",
"knex-postgis": "^0.2.0",
"koa": "^2.0.0-alpha.7",
"koa-body": "^1.5.0",
"koa-convert": "^1.2.0",
"koa-cors": "0.0.16",
"koa-logger": "^1.3.1",
"koa-passport": "^2.0.1",
"koa-router": "^7.0.1",
"lodash": "^4.16.1",
"moment": "^2.15.1",
"node-fetch": "^1.6.3",
"passport-local": "^1.0.0",
"pg": "^6.1.0",
"polyline": "^0.2.0"
},
"devDependencies": {
"apidoc": "^0.17.5",
"babel-cli": "^6.22.2",
"babel-eslint": "^7.1.1",
"babel-register": "^6.22.0",
"commitizen": "^2.9.5",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.15.0",
"eslint-config-standard": "^6.0.1",
"eslint-plugin-babel": "^4.0.1",
"eslint-plugin-promise": "^3.4.1",
"eslint-plugin-standard": "^2.0.0",
"nodemon": "^1.10.2",
"validate-commit-msg": "^2.11.1"
}
}