-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·88 lines (88 loc) · 2.27 KB
/
package.json
File metadata and controls
executable file
·88 lines (88 loc) · 2.27 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
84
85
86
87
88
{
"name": "nodejs-server-template",
"version": "0.0.0",
"private": true,
"description": "Not-so-opinionated server template, with all the important stuff",
"keywords": [
"nodejs",
"typescript",
"template",
"nodejs-template",
"iamnapo",
"eslint",
"express",
"graphql",
"sentry",
"ava",
"dotenv",
"zod",
"pnpm"
],
"homepage": "https://github.com/iamnapo/nodejs-server-template#readme",
"bugs": {
"url": "https://github.com/iamnapo/nodejs-server-template/issues"
},
"repository": "github:iamnapo/nodejs-server-template",
"license": "MIT",
"author": {
"name": "Napoleon-Christos Oikonomou",
"email": "Napoleonoikon@gmail.com",
"url": "https://iamnapo.me"
},
"type": "module",
"imports": {
"#graphql/*": "./source/graphql/*",
"#middleware/*": "./source/middleware/*",
"#routes/*": "./source/routes/*",
"#schemas/*": "./source/schemas/*",
"#config/*": "./source/config/*"
},
"scripts": {
"dev": "NODE_ENV=development node --watch ./source/server.ts",
"lint": "eslint --cache",
"start": "NODE_ENV=production node source/server.js",
"test": "pnpm lint && tsc && c8 ava"
},
"prettier": "@iamnapo/prettier-config",
"dependencies": {
"@sentry/node": "^10.36.0",
"chalk": "^5.6.2",
"clean-stack": "^6.0.0",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"got": "^14.6.6",
"graphql": "^16.12.0",
"graphql-http": "^1.22.4",
"helmet": "^8.1.0",
"morgan": "^1.10.1",
"ruru": "^2.0.0-rc.4",
"serve-favicon": "^2.5.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@iamnapo/prettier-config": "^3.0.0",
"@iamnapo/tsconfig": "^8.1.0",
"@types/compression": "^1.8.1",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/morgan": "^1.9.10",
"@types/node": "^25.0.10",
"@types/serve-favicon": "^2.5.7",
"async-listen": "^3.1.0",
"ava": "^6.4.1",
"c8": "^10.1.3",
"eslint": "^9.39.2",
"eslint-config-iamnapo": "^43.0.0",
"file-type": "^21.3.0",
"nock": "^14.0.10",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.28.1+sha512.7d7dbbca9e99447b7c3bf7a73286afaaf6be99251eb9498baefa7d406892f67b879adb3a1d7e687fc4ccc1a388c7175fbaae567a26ab44d1067b54fcb0d6a316",
"engines": {
"node": ">=24"
}
}