-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 1.97 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
{
"name": "urbo-core-api",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node node_modules/gulp/bin/gulp.js",
"start-dev": "node node_modules/gulp/bin/gulp.js start-dev",
"debug": "node-debug --web-host 0.0.0.0 ./bin/www",
"test": "mocha",
"lint": "./node_modules/.bin/eslint ./**/*.js",
"fixlint": "./node_modules/.bin/eslint ./**/*.js --fix",
"coverage": "istanbul cover _mocha",
"migrate": "node ./bin/migrate up --migrations-dir db/migrations",
"createmigration": "./bin/migrate create --migrations-dir db/migrations --sql-file",
"resetmigrations": "./bin/migrate reset --migrations-dir db/migrations",
"namedmaps": "node ./bin/namedmaps",
"cartofunctions": "node ./bin/cartofunctions",
"install-vertical": "node ./bin/install-vertical",
"delete-vertical": "node ./bin/delete-vertical"
},
"dependencies": {
"app-root-path": "^2.0.1",
"bluebird": "^3.4.6",
"body-parser": "~1.13.2",
"bufferutil": "^2.0.1",
"cartodb": "^0.5.1",
"cookie-parser": "~1.3.5",
"debug": "2.6.9",
"express": "~4.13.1",
"express-validator": "^2.20.8",
"fs-extra": "^4.0.2",
"gulp": "^3.9.1",
"gulp-batch": "^1.0.5",
"gulp-watch": "^4.3.9",
"iconv": "^2.1.11",
"js-yaml": "^3.5.3",
"json2csv": "^3.5.1",
"jwt-simple": "^0.5.0",
"ldapauth-fork": "4.0.2",
"log4js": "^0.6.32",
"memory-cache": "0.1.6",
"merge-yaml": "1.0.0",
"mkdirp": "0.5.1",
"moment": "^2.13.0",
"moment-timezone": "^0.5.5",
"multer": "1.4.1",
"node-slug": "0.0.2",
"pg": "^6.1.2",
"pg-copy-streams": "2.2.0",
"recursive-iterator": "^3.3.0",
"redis": "^2.6.2",
"request": "2.88.0",
"request-promise": "4.2.2",
"underscore": "^1.8.3",
"utf-8-validate": "^3.0.1",
"ws": "3.3.1",
"xml2js": "0.4.16"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "3.15.0",
"istanbul": "^0.4.5",
"mocha": "^2.5.3",
"supertest": "^1.2.0"
}
}