-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.66 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
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "node_modules/.bin/webpack-cli",
"build:watch": "node_modules/.bin/webpack-cli --watch --build-delimiter='Webpack: finished building'",
"dev": "./node_modules/.bin/nodemon --inspect=5645 ./dist/src/app.js --watch dist",
"dev:watch": "node_modules/.bin/nodemon -e ts -w ./src -x npm run dev",
"dev:debug": "npm run build && npm run deb",
"lint": "node_modules/.bin/tslint -p . -c tslint.json",
"lint:junit": "mkdir -p artifacts/junit/tslint && node_modules/.bin/tslint -p . -c tslint.json -t junit > artifacts/junit/tslint/lint-test-results.xml",
"start": "node dist/main.bundle.js",
"test": "export NODE_ENV=unit_test && node_modules/.bin/nyc node_modules/.bin/mocha-webpack",
"test:coverage": "node_modules/.bin/nyc check-coverage"
},
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/hapi": "18.4.0",
"@hapi/vision": "5.5.4",
"@types/bunyan": "^1.8.6",
"@types/hapi-auth-jwt2": "8.6.1",
"bcryptjs": "^2.4.3",
"boom": "^7.3.0",
"bunyan": "^1.8.12",
"bunyan-debug-stream": "^2.0.0",
"convict": "4.4.1",
"deepmerge": "^4.1.1",
"hapi": "18.1.0",
"hapi-auth-jwt2": "8.8.0",
"happypack": "5.0.1",
"inert": "5.1.3",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.2.7",
"mongoose": "^5.5.14",
"morgan": "^1.9.1",
"prettier": "1.18.2",
"tslint-config-prettier": "1.18.0",
"validator": "^11.0.0"
},
"devDependencies": {
"@elastic.io/casbin-mongoose-adapter": "1.0.0",
"@istanbuljs/nyc-config-typescript": "0.1.3",
"@types/bcryptjs": "2.4.2",
"@types/boom": "^7.3.0",
"@types/convict": "^4.2.1",
"@types/hapi": "18.0.2",
"@types/inert": "5.1.2",
"@types/jest": "24.0.19",
"@types/jsonwebtoken": "8.3.5",
"@types/mongoose": "5.5.22",
"@types/node": "12.11.1",
"@types/vision": "5.3.6",
"casbin": "3.0.4",
"chai": "4.2.0",
"fork-ts-checker-webpack-plugin": "1.5.1",
"hapi-swagger": "9.1.1",
"istanbul-instrumenter-loader": "3.0.1",
"mocha": "6.2.2",
"mocha-webpack": "2.0.0-beta.0",
"mongodb-client-encryption": "0.3.1",
"nodemon": "^1.19.4",
"nyc": "14.1.1",
"source-map-support": "0.5.13",
"ts-loader": "^6.2.0",
"ts-node": "8.4.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^5.20.0",
"tslint-config-airbnb": "^5.11.2",
"tslint-loader": "3.5.4",
"typescript": "^3.6.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-filter-warnings-plugin": "1.2.1",
"webpack-node-externals": "^1.7.2"
},
"engines": {
"node": "^10.13.0"
}
}