-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.32 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
{
"name": "chimeio",
"description": "chimeio servers",
"version": "0.0.0",
"homepage": "",
"main": "src/",
"keywords": [
"feathers"
],
"license": "MIT",
"repository": {},
"author": {},
"contributors": [],
"bugs": {},
"engines": {
"node": ">= 0.12.0"
},
"scripts": {
"test": "npm run jshint && npm run mocha",
"jshint": "jshint src/. test/. --config",
"start": "node dist/",
"mocha": "mocha test/ --recursive"
},
"dependencies": {
"body-parser": "^1.15.1",
"compression": "^1.6.1",
"cors": "^2.7.1",
"feathers": "^2.0.1",
"feathers-authentication": "^0.7.7",
"feathers-configuration": "^0.2.3",
"feathers-errors": "^2.1.0",
"feathers-hooks": "^1.5.3",
"feathers-mongoose": "^3.3.7",
"feathers-rest": "^1.3.0",
"feathers-socketio": "^1.4.0",
"mongoose": "^4.4.16",
"passport": "^0.3.2",
"serve-favicon": "^2.3.0",
"winston": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-cached": "^1.1.0",
"gulp-nodemon": "^2.0.6",
"gulp-sourcemaps": "^1.6.0",
"jshint": "^2.9.1",
"mocha": "^2.4.5",
"request": "^2.69.0"
}
}