-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 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
{
"name": "knextancy-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"bin": {
"news-service": "service.js"
},
"scripts": {
"lint": "eslint src/ spec/",
"start": "node ./bin/service.js",
"dev": "supervisor --watch src ./bin/service.js",
"test": "npm run lint && mocha --require babel-polyfill --compilers js:babel-core/register --reporter spec --recursive --watch-extensions .spec.js ./spec",
"watch-test": "npm run test -- --watch --bail ./spec"
},
"repository": {
"type": "git",
"url": "[email protected]:bravi-software/knextancy-example.git"
},
"contributors": [
"Max Claus Nunes (https://github.com/maxcnunes)"
],
"dependencies": {
"babel-core": "^6.4.5",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"body-parser": "^1.14.0",
"dnscache": "0.0.3",
"es6-error": "^2.0.0",
"express": "^4.13.3",
"knex": "^0.10.0",
"knextancy": "^2.1.2",
"meaning-error": "^2.0.0",
"meaning-error-middleware": "^0.1.1",
"pg": "^4.4.1",
"valida": "^2.0.0"
},
"devDependencies": {
"babel-eslint": "^4.1.6",
"chai": "^3.4.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^3.1.0",
"mocha": "^2.3.4",
"supertest": "^1.1.0",
"supervisor": "^0.9.1"
}
}