-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.89 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.89 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "backend-task",
"version": "1.0.0",
"description": "hackerbay backend task",
"main": "server.ts",
"scripts": {
"run-tests": "nyc mocha -r ts-node/register src/**/*.spec.ts -timeout 10000",
"start": "nodemon --watch './src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node' ./src/lib/server.ts",
"build-ts": "tsc",
"watch-node": "nodemon ./src/dist/server.js",
"watch-ts": "tsc -w",
"serve": "node ./src/dist/server.js",
"lint": "node_modules/.bin/eslint --fix src/lib/**/*.ts",
"test": "npm run run-tests && nyc report --reporter=text-lcov | coveralls",
"docs": "./node_modules/.bin/typedoc --out docs --mode modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DrKimpatrick/backend-task.git"
},
"keywords": [
"node",
"express",
"mongodb",
"docker",
"tdd",
"api",
"json",
"patching",
"image",
"thumbnail",
"generation"
],
"author": "dr.kimpatrick",
"license": "ISC",
"bugs": {
"url": "https://github.com/DrKimpatrick/backend-task/issues"
},
"homepage": "https://github.com/DrKimpatrick/backend-task#readme",
"dependencies": {
"@hapi/joi": "^16.1.7",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.1",
"@types/hapi__joi": "^15.0.4",
"@types/jsonwebtoken": "^8.3.4",
"app-root-path": "^2.2.1",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"image-thumbnail": "^1.0.4",
"jsdoc": "^3.6.3",
"jsonpatch": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"coveralls": "^3.0.6",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.8",
"istanbul": "^0.4.5",
"mocha": "^6.2.1",
"nodemon": "^1.19.3",
"nyc": "^14.1.1",
"prettier": "^1.17.0",
"source-map-support": "^0.5.13",
"ts-node": "^8.4.1",
"typedoc": "^0.15.0",
"typescript": "^3.6.3"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/lib/helpers/validateJSON.ts",
"src/**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
}
}