-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.52 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
92
{
"name": "nodejs-typescript-application",
"version": "1.0.0",
"description": "Building RESTful Web APIs with Node.js, Express and TypeScript",
"main": "dist/server.js",
"scripts": {
"postinstall": "npx tsc",
"build": "tsc-watch",
"dev": "env NODE_ENV=development node ./dist/server.js",
"test": "env NODE_ENV=test jest --testTimeout=30000 --runInBand --detectOpenHandles",
"prod": "env NODE_ENV=production node ./dist/server.js",
"tslint": "tslint --project tsconfig.json",
"prettier:base": "prettier --parser typescript --single-quote",
"prettier:check": "npm run prettier:base -- --list-different \"src/**/*.{ts,tsx}\"",
"prettier:write": "npm run prettier:base -- --write \"src/**/*.{ts,tsx}\""
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier:write"
}
},
"repository": {
"type": "git",
"url": "https://github.com/AditechGH/nodejs-typescript-application.git"
},
"keywords": [
"HLS",
"FFMPEG"
],
"author": "Adnan Alhassan <[email protected]>",
"license": "ISC",
"jest": {
"verbose": true,
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"homepage": "https://github.com/AditechGH/hls-ffmpeg-nodejs-script#readme",
"dependencies": {
"@types/body-parser": "1.19.0",
"@types/compression": "1.7.0",
"@types/cors": "2.8.8",
"@types/dotenv": "8.2.0",
"@types/express": "4.17.8",
"@types/helmet": "4.0.0",
"@types/mongoose": "5.7.37",
"@types/morgan": "1.9.2",
"@types/node": "14.14.6",
"@types/redis": "2.8.28",
"@types/supertest": "2.0.10",
"@types/winston": "2.4.4",
"body-parser": "1.19.0",
"compression": "1.7.4",
"cors": "2.8.5",
"dotenv": "8.2.0",
"express": "4.17.1",
"helmet": "4.2.0",
"mongoose": "5.10.13",
"morgan": "1.10.0",
"redis": "3.0.2",
"supertest": "^6.0.1",
"tsc-watch": "4.2.9",
"typescript": "4.0.5",
"winston": "3.3.3",
"winston-daily-rotate-file": "4.5.0"
},
"devDependencies": {
"@types/jest": "26.0.15",
"husky": "4.3.0",
"jest": "26.6.3",
"prettier": "2.1.2",
"ts-jest": "^26.4.4",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0"
}
}