This repository has been archived by the owner on Mar 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.83 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
{
"name": "nodejs-rest-http-ts",
"version": "4.0.0",
"author": "Red Hat, Inc.",
"license": "Apache-2.0",
"scripts": {
"dev-build": "tsc",
"postdev-build": "ts-node tools/copyAssets",
"dev-watch": "tsc --watch",
"pretest": "eslint --ignore-path .gitignore .",
"test": "TS_NODE_FILES=true nyc --reporter=lcov mocha -r ts-node/register test/*.ts",
"prepare": "echo 'To confirm CVE compliance, run \"npm audit\"' ",
"openshift": "npm run dev-build && nodeshift --dockerImage=registry.access.redhat.com/ubi8/nodejs-14",
"start": "node dist/bin/www"
},
"main": "dist/bin/www",
"repository": {
"type": "git",
"url": "git://github.com/nodeshift-starters/nodejs-rest-http-ts.git"
},
"files": [
"package.json",
"dist/app.js",
"dist/public",
"dist/bin",
"LICENSE"
],
"bugs": {
"url": "https://github.com/nodeshift-starters/nodejs-rest-http-ts/issues"
},
"homepage": "https://github.com/nodeshift-starters/nodejs-rest-http-ts",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.10",
"@types/pino": "^7.0.5",
"@types/shelljs": "^0.8.11",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-config-semistandard": "^16.0.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"js-yaml": "^4.1.0",
"mocha": "^9.1.4",
"nodeshift": "~8.5.0",
"nyc": "~15.1.0",
"shelljs": "^0.8.5",
"supertest": "~6.1.4",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"debug": "^4.3.3",
"express": "~4.17.2",
"pino": "^7.6.3",
"pino-pretty": "^5.1.2"
}
}