-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.61 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
{
"name": "PMS",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"dev": "nodemon --exec babel-node ./src/index.js",
"build": "babel src --out-dir ./dist --source-maps",
"start": "node ./dist/index.js",
"test": "NODE_ENV=test nyc mocha ./test/*.spec.js --require @babel/register --exit && nyc report --reporter=text-lcov | coveralls",
"test:watch": "NODE_ENV=test mocha --timeout=50000 ./test/*.spec.js --require @babel/register --watch",
"debug": "node --inspect-brk ./dist/index.js"
},
"keywords": [],
"author": "emasys",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"chai": "^4.2.0",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.4"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@hapi/glue": "^6.1.0",
"@hapi/hapi": "^18.3.1",
"@hapi/inert": "^5.2.1",
"@hapi/joi": "^15.1.0",
"@hapi/vision": "^5.5.2",
"@now-ims/hapi-now-auth": "^1.3.1",
"bcrypt": "^3.0.2",
"boom": "^7.3.0",
"chai-http": "^4.2.0",
"coveralls": "^3.0.5",
"dotenv": "^6.2.0",
"fancy-log": "^1.3.3",
"h2o2": "^8.1.2",
"hapi-auth-jwt2": "^8.2.0",
"hapi-swagger": "^9.4.2",
"joi": "^14.3.1",
"jsonwebtoken": "^8.4.0",
"nyc": "^14.1.1",
"pg": "^7.7.1",
"pg-hstore": "^2.3.2",
"sequelize": "^5.10.1",
"sequelize-cli": "^5.5.0",
"uuid": "^3.3.2"
}
}