-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.64 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
{
"name": "redirector",
"version": "0.1.0",
"license": "MIT",
"private": true,
"homepage": "https://github.com/rtholmes/redirector",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"debug": ">=4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.0",
"express-handlebars": "^5.2.1",
"express-session": "^1.17.1",
"fs-extra": "^9.1.0",
"moment": "^2.29.1",
"morgan": ">=1.9.1",
"pm2": "^3.5.0",
"rotating-file-stream": "^1.4.1"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/chai-http": "^4.2.0",
"@types/cookie-parser": "^1.4.1",
"@types/debug": "^4.1.4",
"@types/express": "^4.16.1",
"@types/express-session": "^1.17.3",
"@types/fs-extra": "^9.0.7",
"@types/mocha": "^8.2.1",
"@types/morgan": "^1.7.35",
"chai": "^4.3.0",
"chai-http": "^4.3.0",
"chai-match": "^1.1.1",
"mocha": "^8.3.0",
"nodemon": "^1.19.0",
"nyc": "^15.1.0",
"rimraf": "^2.6.3",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"typescript": "^3.4.5"
},
"scripts": {
"start": "nodemon --exec \"ts-node\" ./src/index.ts",
"start-prod": "pm2 start ./build/index.js",
"stop-prod": "pm2 stop",
"build": "rimraf -fR && tsc",
"test": "mocha -r ts-node/register test/**/*.spec.ts --exit",
"cover": "nyc yarn run test"
},
"engines": {
"node": ">= 10.15.3"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
}
}