-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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
{
"name": "helocore",
"version": "1.1.2",
"description": "A lightweight Node.js and TypeScript dependency injection framework",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"start": "nodemon --watch \"./**\" --ext \"ts\" --exec \"ts-node index.ts\"",
"build": "tsc",
"lint": "eslint --ext .ts --ignore-path .gitignore --fix src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/helorobo/helocore.git"
},
"keywords": [
"helocore",
"helorobo",
"dependency injection",
"dependency",
"injection",
"javascript",
"typescript",
"container",
"graphql",
"graphql api"
],
"engines": {
"node": ">= 14.0.0"
},
"author": "Erdem Ün <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/helorobo/helocore/issues"
},
"homepage": "https://github.com/helorobo/helocore#readme",
"dependencies": {
"@fastify/rate-limit": "^9.1.0",
"fastify": "^4.25.2",
"nanoid": "^3.1.32",
"pino": "^8.11.0",
"reflect-metadata": "^0.1.13",
"mercurius": "^14.1.0",
"tsyringe": "^4.7.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"nodemon": "^3.0.1",
"ts-node": "^10.4.0",
"typescript": "^5.3.3"
}
}