-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.37 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.37 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
50
51
52
53
54
55
56
57
{
"name": "milou",
"version": "0.0.4",
"description": "Another NodeJS Skeleton.",
"scripts": {
"start": "npm run dev",
"dev": "nodemon --watch server --watch test --exec 'npm run serve'",
"serve": "babel-node ./server/server.js | ./node_modules/bunyan/bin/bunyan -o short",
"lint": "eslint server/*",
"test": "time ava --verbose test/index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/aabril/milou.git"
},
"keywords": [
"skeleton",
"nodejs",
"express",
"api"
],
"author": "Albert Abril",
"license": "MIT",
"bugs": {
"url": "https://github.com/aabril/milou/issues"
},
"homepage": "https://github.com/aabril/milou#readme",
"dependencies": {
"bcrypt": "^1.0.2",
"body-parser": "^1.17.2",
"bunyan": "^1.8.10",
"composable-middleware": "^0.3.0",
"express": "^4.15.3",
"express-jwt": "^5.3.0",
"jsonwebtoken": "^7.4.1",
"lodash": "^4.17.4",
"mongoose": "4.10.8",
"multer": "^1.3.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0"
},
"devDependencies": {
"ava": "^0.19.1",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.0.1",
"eslint-plugin-babel": "^4.1.1",
"nodemon": "^1.11.0",
"supertest": "^3.0.0"
},
"ava": {
"require": [
"babel-register"
]
}
}