This repository has been archived by the owner on Apr 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.38 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": "typehapily",
"version": "1.0.0",
"description": "Typehapily Server",
"main": "dist/server.js",
"scripts": {
"test": "nyc mocha -r ts-node/register -r tsconfig-paths/register tests/**/*.spec.ts --exit",
"coverage": "nyc check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"lint": "tslint src/**/*.ts --project ./tslint.json -t verbose",
"lint:live": "chokidar src/**/*.ts -c \"tslint src/**/*.ts --project ./tslint.json -t verbose\"",
"build": "npm run lint && tsc && cpx \"src/templates/**/*.{html,png,jpg,css,md,txt,json,ico}\" dist/templates",
"build:live": "npm run lint && concurrently --kill-others \"npm run lint:live\" \"nodemon\"",
"serve": "npm run build:live"
},
"author": "Tejus Pratap <tejzpr@gmail.com>",
"license": "MIT",
"dependencies": {
"@types/chai": "4.1.4",
"@types/dotenv": "4.0.2",
"@types/hapi": "17.0.7",
"@types/inert": "5.1.1",
"@types/joi": "^13.0.8",
"@types/lodash": "^4.14.109",
"@types/mocha": "5.2.4",
"@types/node": "9.6.0",
"@types/vision": "5.3.4",
"blipp": "3.0.0",
"chalk": "2.3.2",
"class-validator": "^0.8.5",
"confidence": "3.0.2",
"dotenv": "5.0.1",
"glue": "5.0.0",
"good": "8.1.1",
"good-winston": "^4.0.0",
"hapi": "17.2.3",
"inert": "5.1.0",
"joi": "13.3.0",
"joi-country-extension": "1.0.0",
"joi-date-extensions": "1.2.0",
"lodash": "^4.17.19",
"module-alias": "2.1.0",
"pg": "7.4.1",
"pg-hstore": "2.3.2",
"reflect-metadata": "0.1.12",
"typeorm": "https://github.com/tejzpr/typeorm-oracle.git",
"vision": "5.3.3",
"winston": "3.0.0"
},
"devDependencies": {
"chai": "4.1.2",
"chokidar-cli": "1.2.0",
"concurrently": "3.5.1",
"cpx": "^1.5.0",
"mocha": "5.2.0",
"nodemon": "1.17.2",
"nyc": "12.0.2",
"should": "13.2.1",
"ts-node": "7.0.0",
"tsconfig-paths": "^3.5.0",
"tslint": "5.9.1",
"tslint-config-airbnb": "5.8.0",
"tslint-eslint-rules": "5.1.0",
"typescript": "2.7.2"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"dist",
"tests"
]
},
"_moduleAliases": {
"@utilities": "dist/utilities",
"@logger": "dist/utilities/logger",
"@database": "dist/database/default",
"@controllers": "dist/controllers",
"@routes": "dist/routes",
"@configs": "dist/configs"
}
}