-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.26 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
83
84
85
86
87
88
89
90
91
{
"name": "myexpress",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "env-cmd -f ./config/.env nodemon app.ts",
"build": "tsc",
"test": "nyc --reporter=html ts-mocha --timeout 10000 routes/*.spec.ts",
"test-with-coverage": "nyc --reporter=html --reporter=text ts-mocha --timeout 10000 tests",
"coverage-all": "nyc --reporter=html --reporter=text, ts-mocha --timeout 10000 tests/test.ts"
},
"dependencies": {
"body-parser": "^1.20.2",
"chai-spies": "^1.0.0",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"env-cmd": "^10.1.0",
"express": "~4.16.1",
"express-joi-validation": "^5.0.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"joi": "^17.8.3",
"lowdb": "^5.1.0",
"morgan": "~1.9.1",
"pg": "^8.9.0",
"ronin-mocks": "^0.1.11",
"ronin-server": "^0.1.3",
"sinon": "^15.0.3",
"supertest": "^6.3.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/dotenv": "^8.2.0",
"@types/expect": "^24.3.0",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.5",
"@types/pg": "^8.6.6",
"@types/sinon": "^10.0.13",
"@types/supertest": "^2.0.12",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"dotenv": "^16.0.3",
"mocha": "^10.2.0",
"nodemon": "^2.0.21",
"nyc": "^15.1.0",
"pg-mem": "^2.6.10",
"proxyquire": "^2.1.3",
"pstree.remy": "^1.1.0",
"request": "^2.83.0",
"source-map-support": "^0.5.21",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.5"
},
"nyc": {
"exclude": [
"routes/*.spec.ts",
"config"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"lcov",
"html"
]
},
"main": "app.ts",
"keywords": [],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/JeraldJF/myexpress-myDatasets.git"
},
"bugs": {
"url": "https://github.com/JeraldJF/myexpress-myDatasets/issues"
},
"homepage": "https://github.com/JeraldJF/myexpress-myDatasets#readme",
"directories": {
"test": "tests"
},
"description": ""
}