-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.59 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
{
"name": "openshift-ts",
"version": "4.0.0",
"description": "A sample TypeScript application that can be deployed on OpenShift",
"main": "src/server.js",
"scripts": {
"build": "tsc",
"nodeshift": "nodeshift --expose",
"postinstall": "npm run build",
"format": "prettier --write --single-quote src/**/*.ts",
"start": "node src/server.js",
"start-dev": "nodemon --legacy-watch -e ts -x ts-node src/server.ts | pino-pretty -t",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "npm run format && git add ."
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/evanshortiss/openshift-typescript-example.git"
},
"author": "Evan Shortiss <[email protected]> (https://evanshortiss.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/evanshortiss/openshift-typescript-example/issues"
},
"homepage": "https://github.com/evanshortiss/openshift-typescript-example#readme",
"dependencies": {
"env-var": "~6.3.0",
"express": "~4.17.1",
"express-handlebars": "^5.3.2",
"helmet": "~4.1.0",
"kube-probe": "~0.5.0",
"morgan": "~1.10.0",
"pino": "~6.5.1",
"redis": "^3.1.2"
},
"devDependencies": {
"@types/express": "~4.17.8",
"@types/express-handlebars": "^3.1.0",
"@types/node": "~12.12.54",
"@types/pino": "~6.3.0",
"@types/redis": "^2.8.28",
"husky": "~4.2.5",
"nodemon": "~2.0.7",
"nodeshift": "^8.2.0",
"pino-pretty": "~4.1.0",
"prettier": "~2.1.1",
"ts-node": "~9.1.1",
"typescript": "~4.0.2"
}
}