-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.92 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "u235core",
"version": "1.0.0",
"repository": "git+ssh://[email protected]/WhatsMyCut/u235core.git",
"description": "u235core library",
"scripts": {
"start": "node ./main.js || true",
"debug": "node --debug ./main.js || true",
"watch": "nodemon -w ./ ./main.js",
"test:unit": "lab -v test/lib test/models test/plugins -a code -t 100 -I __core-js_shared__ -c --coverage-exclude app/services",
"test:integration": "lab -v -a code -I __core-js_shared__ test/integrations",
"test:integrationInspect": "lab -v --inspect=5858 -a code -I __core-js_shared__ test/integrations",
"test": "npm run test:integration && npm run test:unit",
"test:coverage": "lab -a code -t 100 -r html -o coverage.html -I __core-js_shared__ --coverage-exclude app/services",
"test:lint": "eslint --ext .js ./app/**",
"token": "curl -s -X POST http://localhost:8000/auth-token -H 'Content-Type: application/json; charset=UTF-8' -d '{ \"email\": \"admin\", \"password\": \"admin\" }' | jq -r '.token'",
"db:seed": "knex seed:run",
"db:drop": "node ./tasks/dropDatabase.js",
"db:reset": "node ./tasks/dropDatabase.js && npm run db:migrate",
"db:migrate": "knex migrate:latest",
"db:migrate:test": "NODE_ENV=test knex migrate:latest",
"db:rollback": "knex migrate:rollback",
"db:rollback:test": "NODE_ENV=test knex migrate:rollback",
"describe-routes": "node scripts/describe-routes.js"
},
"author": "YA Engage",
"license": "UNLICENSED",
"dependencies": {
"aws-sdk": "^2.209.0",
"bcrypt": "^0.8.7",
"bluebird": "^3.5.1",
"bookshelf": "^0.9.5",
"boom": "^3.2.2",
"concat-stream": "^1.6.1",
"confidence": "^3.0.2",
"csv-parser": "^1.12.0",
"dag-map": "^1.0.2",
"dotenv": "^2.0.0",
"form-data": "^1.0.1",
"glob": "^7.1.2",
"glue": "^4.2.1",
"good": "^7.3.0",
"good-console": "^6.4.1",
"good-winston": "^2.1.0",
"hapi": "^15.2.0",
"hapi-auth-cookie": "^6.1.1",
"hapi-auth-jwt2": "^6.0.0",
"hapi-bookshelf-models": "^1.8.0",
"hapi-qs": "^1.1.3",
"hapi-swagger": "^7.10.0",
"heapdump": "^0.3.9",
"hoek": "^3.0.4",
"inert": "^3.2.1",
"is-my-json-valid": "^2.17.2",
"joi": "^9.2.0",
"knex": "^0.10.0",
"ldapjs": "^1.0.2",
"lodash": "^4.17.5",
"mock-knex": "^0.3.9",
"moment": "^2.21.0",
"mustache": "^2.3.0",
"node-uuid": "^1.4.8",
"pg": "^4.5.7",
"pluralize": "^3.1.0",
"qs": "^6.5.1",
"redux-logger": "git+ssh://[email protected]/WhatsMyCut/u235logger.git#v0.1.0",
"u235logger": "git+ssh://[email protected]/WhatsMyCut/u235logger.git#v0.1.0",
"vision": "^4.1.1",
"winston-aws-cloudwatch": "^1.6.0",
"wreck": "^7.2.1"
},
"devDependencies": {
"cli-table": "^0.3.1",
"code": "^4.0.0",
"eslint": "^3.10.0",
"faker": "^3.1.0",
"lab": "^12.1.0",
"knex-cleaner": "^1.1.3",
"nock": "^8.0.0",
"nodemon": "^1.9.1",
"testdouble": "^1.4.1"
}
}