-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
71 lines (71 loc) · 1.99 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
{
"name": "wappuapp-backend",
"version": "1.0.0",
"engines": {
"node": "5.7.x",
"npm": "2.x.x"
},
"license": "MIT",
"author": "Futurice Tammerforce <[email protected]> (http://tammerforce.com/)",
"contributors": [
"Tomi Turtiainen <[email protected]> (http://github.com/tomi)",
"Kimmo Brunfeldt <[email protected]> (http://github.com/kimmobrunfeldt)"
],
"dependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"bluebird": "^3.3.4",
"body-parser": "^1.15.0",
"change-case": "^2.3.1",
"compression": "^1.6.1",
"cors": "^2.7.1",
"express": "^4.13.4",
"fb": "^1.0.2",
"gcloud": "^0.29.0",
"geolib": "^2.0.22",
"gm": "^1.21.1",
"googleapis": "^18.0.0",
"joi": "^8.0.4",
"knex": "^0.10.0",
"lodash": "^4.6.1",
"moment": "^2.12.0",
"moment-timezone": "^0.5.1",
"morgan": "^1.7.0",
"pg": "^4.5.1",
"redis": "^2.7.1",
"request": "^2.69.0",
"server-destroy": "^1.0.1",
"streamifier": "^0.1.1",
"uuid": "^3.0.1",
"winston": "^2.2.0"
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-eslint": "^6.0.0-beta.5",
"babel-node-debug": "^2.0.0",
"chai": "^3.5.0",
"csv": "^0.4.6",
"david": "^7.0.1",
"eslint": "2.2.x",
"fuse": "^0.4.0",
"fuse.js": "^2.2.0",
"iconv-lite": "^0.4.13",
"jscs": "^2.11.0",
"mocha": "^2.4.5",
"mocha-cli": "^1.0.0",
"nodemon": "^1.9.1",
"superagent": "^1.8.0",
"supertest": "^1.2.0",
"supertest-as-promised": "^3.0.0"
},
"scripts": {
"postinstall": "bash ./tools/run-migrations-and-seeds.sh",
"debug": "babel-node-debug --debug-brk src/index.js",
"start": "source .env && nodemon --watch ./src -e js --exec \"babel-node --presets es2015 src/index.js\"",
"test": "source .env-test && mocha --compilers js:babel-core/register",
"ci": "bash ./tools/ci.sh",
"eslint": "eslint --ext .js ./src",
"jscs": "jscs ./src"
}
}