-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
70 lines (70 loc) · 1.95 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
{
"name": "fiberfy-server",
"version": "0.0.0",
"description": "API Server for fiberfy",
"homepage": "http://fiberfy.io",
"author": {
"name": "Agustí Moll",
"email": "agusti.moll@guifi.net",
"url": "https://github.com/trailsjs"
},
"main": "index.js",
"keywords": [
"",
"trails",
"trailsjs"
],
"dependencies": {
"colors": "^1.1.2",
"express": "^5.0.0-alpha.2",
"geojson": "^0.4.1",
"jsonwebtoken": "^7.0.1",
"lodash": "^4.13.1",
"passport": "^0.3.2",
"passport-jwt": "^2.1.0",
"passport-local": "^1.0.0",
"pug": "^2.0.0-beta3",
"trailpack-core": "^1.0.0-beta-3",
"trailpack-express": "^1.0.8",
"trailpack-footprints": "^1.0.1",
"trailpack-hapi": "^1.0.2",
"trailpack-passport-auth-generic": "0.0.1",
"trailpack-repl": "^1.0.0-beta-3",
"trailpack-router": "^1.0.0-beta-4",
"trailpack-waterline": "^1.0.0-beta-1",
"trails": "^1.0.0-beta-1",
"trails-controller": "^1.0.0-beta-2",
"trails-model": "^1.0.0-beta-2",
"trails-policy": "^1.0.1",
"trails-service": "1.0.0-beta-2",
"waterline-sqlite3": "^1.0.3",
"winston": "^2.2"
},
"devDependencies": {
"browserify": "^13.0.1",
"eslint": "^2.8",
"eslint-config-trails": "latest",
"geojson": "^0.4.0",
"jquery-browserify": "^1.8.1",
"leaflet": "^0.7.7",
"leaflet-search": "^2.7.0",
"mocha": "^2.4",
"paper": "^0.9.25",
"supertest": "^1.2",
"uglifyjs": "^2.4.10",
"watchify": "^3.7.0"
},
"scripts": {
"test": "eslint --ignore-pattern '/client/' --ignore-pattern '/public/' --fix . && eslint --no-eslintrc -c client/eslintrc.json client/. && mocha",
"build": "cd client && browserify app.js -o ../public/js/bundle.js",
"build-live": "cd client && watchify *.js -o ../public/js/bundle.js -dv"
},
"engines": {
"node": ">= 4.0.0"
},
"eslintConfig": {
"extends": "trails"
},
"repository": "agustim/fiberfy-server",
"license": "MIT"
}