-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.6 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": "cloud-native-enterprise-nodejs",
"version": "0.2.0",
"description": "Cloud-native Enterprise Node.js",
"repository": {
"type": "git",
"url": "git+https://github.com/m99coder/cloud-native-enterprise-nodejs.git"
},
"keywords": [
"eslint",
"fastify",
"grafana",
"jest",
"loki",
"observability",
"pino",
"prettier",
"prometheus",
"promtail",
"tempo",
"ts-node-dev",
"typescript"
],
"author": "Marco Lehmann <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/m99coder/cloud-native-enterprise-nodejs/issues"
},
"homepage": "https://github.com/m99coder/cloud-native-enterprise-nodejs#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.10",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.3",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.3"
},
"scripts": {
"build": "tsc",
"clean": "npx rimraf out",
"dev": "tsnd --respawn src/server.ts",
"fmt": "npm run lint -- --fix",
"lint": "eslint --ext .ts --ignore-path .eslintignore .",
"start": "node out/server.js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:dev": "jest --watchAll"
},
"dependencies": {
"dotenv": "^16.4.7",
"fastify": "^4.29.0",
"uuid": "^11.0.5"
}
}