-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
79 lines (79 loc) · 2.09 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
{
"name": "devceldoret-backend",
"version": "1.1.0",
"description": "This repo serves as the backend for the Developer Circles Eldoret Community website.",
"main": "server.js",
"scripts": {
"start": "nodemon --exec \"ts-node\" ./src/server.ts",
"test": "export NODE_ENV=test && nyc mocha -r ts-node/register --exit ./src/test/*.test.ts --config .mocharc.json",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "tsc --build tsconfig.json"
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"html"
],
"sourceMap": true,
"instrument": true
},
"repository": {
"type": "git",
"url": "https://github.com/DevCEldoret/devceldoret-backend.git"
},
"keywords": [],
"author": "Developer Circles Community",
"license": "ISC",
"bugs": {
"url": "https://github.com/DevCEldoret/devceldoret-backend/issues"
},
"homepage": "",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"pg": "^8.3.3",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.26"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/express": "^4.17.2",
"@types/mocha": "^8.0.3",
"@types/node": "^14.10.1",
"@types/pg": "^7.14.4",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.34.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"custom-env": "^2.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"mocha": "^8.1.3",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.19.4",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"supertest": "^4.0.2",
"ts-node": "^8.6.2",
"typescript": "^4.0.3"
}
}