-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.19 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.19 KB
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
{
"author": {
"email": "chocholatom1997@gmail.com",
"name": "Tomáš Chochola",
"url": "https://github.com/tomchochola"
},
"bugs": {
"email": "chocholatom1997@gmail.com",
"url": "https://github.com/premierstacks/node-typescript-express-api-template/issues"
},
"contributors": [
{
"email": "chocholatom1997@gmail.com",
"name": "Tomáš Chochola",
"url": "https://github.com/tomchochola"
}
],
"dependencies": {
"@opentelemetry/api-logs": "^0.203.0",
"@opentelemetry/auto-instrumentations-node": "^0.62.1",
"@opentelemetry/sdk-logs": "^0.203.0",
"@opentelemetry/sdk-metrics": "^2.0.1",
"@opentelemetry/sdk-node": "^0.203.0",
"@opentelemetry/sdk-trace-base": "^2.0.1",
"@opentelemetry/semantic-conventions": "^1.36.0",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"ejs": "^3.1.10",
"express": "^5.1.0",
"multer": "^2.0.2"
},
"description": "premierstacks node typescript express api template",
"devDependencies": {
"@premierstacks/eslint-stack": "github:premierstacks/eslint-stack#main",
"@premierstacks/prettier-stack": "github:premierstacks/prettier-stack#main",
"@premierstacks/typescript-stack": "github:premierstacks/typescript-stack#main",
"@types/compression": "^1.8.1",
"@types/cookie-parser": "^1.4.9",
"@types/express": "^5.0.3",
"@types/multer": "^2.0.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tomchochola"
},
"homepage": "https://github.com/premierstacks/node-typescript-express-api-template",
"keywords": [
"tomchochola",
"tomaschochola",
"Tomas Chochola",
"Tomáš Chochola",
"premierstacks",
"node-typescript-express-api-template"
],
"license": "CC-BY-ND-4.0",
"name": "@premierstacks/node-typescript-express-api-template",
"repository": "github:premierstacks/node-typescript-express-api-template",
"scripts": {
"build": "npm run tsc:build",
"check": "npm run stan && npm run lint && npm run security",
"clean": "npm run clean:npm && npm run clean:dist",
"clean:dist": "git clean -xfd ./dist",
"clean:npm": "git clean -xfd ./node_modules ./package-lock.json",
"commit": "npm run fix && npm run check",
"fix": "npm run stan && npm run fix:eslint && npm run fix:prettier",
"fix:eslint": "eslint --fix .",
"fix:prettier": "prettier -w .",
"lint": "npm run stan && npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint .",
"lint:prettier": "prettier -c .",
"npm:audit": "npm audit --audit-level info --include prod --include dev --include peer --include optional",
"npm:install:development": "npm install --include prod --include dev --include peer --include optional --ignore-scripts",
"npm:install:production": "npm install --include prod --omit dev --include peer --include optional --ignore-scripts",
"npm:update": "npm update --include prod --include dev --include peer --include optional --ignore-scripts",
"security": "npm run npm:audit",
"stan": "npm run stan:typescript",
"stan:typescript": "tsc --noEmit",
"start": "node ./dist/index.js",
"tsc:build": "tsc",
"tsc:watch": "tsc --watch"
},
"type": "module"
}