-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "nodejs-dependency-injection-tsyringe",
"version": "0.0.1",
"description": "Dependency Injection using tsyringe",
"main": "index.js",
"scripts": {
"build": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --watch src src/index.ts",
"start": "node dist/index.js",
"test": "jest"
},
"keywords": [
"node",
"express",
"tsyringe",
"dependency-injection",
"dependency",
"injection",
"di",
"js"
],
"author": "Luan Maik <[email protected]>",
"license": "ISC",
"devDependencies": {
"@swc/core": "^1.2.139",
"@swc/jest": "^0.2.17",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.17",
"@types/supertest": "^2.0.11",
"jest": "^27.5.1",
"supertest": "^6.2.2",
"ts-node": "^10.5.0",
"ts-node-dev": "^1.1.8",
"tsc-alias": "^1.6.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.5"
},
"dependencies": {
"express": "^4.17.2",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.6.0"
}
}