-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.17 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.17 KB
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
{
"name": "devlogger",
"description": "small angular 2 dev notes logger",
"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": "babel-node src/",
"mocha": "mocha test/ --compilers js:babel-core/register --recursive"
},
"dependencies": {
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"cors": "^2.7.1",
"feathers": "^2.0.1",
"feathers-authentication": "^0.7.9",
"feathers-configuration": "^0.2.3",
"feathers-errors": "^2.4.0",
"feathers-hooks": "^1.5.7",
"feathers-nedb": "^2.4.1",
"feathers-rest": "^1.4.4",
"feathers-socketio": "^1.4.1",
"nedb": "^1.8.0",
"passport": "^0.3.2",
"serve-favicon": "^2.3.0",
"winston": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-preset-es2015": "^6.13.2",
"jshint": "^2.9.3",
"mocha": "^3.0.2",
"request": "^2.74.0"
}
}