-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.32 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
{
"name": "nt-api",
"version": "1.0.0",
"description": "Nest TypeORM API",
"main": "index.ts",
"scripts": {
"test": "test",
"build": "tsc",
"dev": "nodemon src/index.ts",
"start": "ts-node src/index.ts",
"typeorm": "typeorm-ts-node-commonjs"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:DaveMacNeil/NT-API.git"
},
"keywords": [
"Nest",
"TypeORM",
"API"
],
"author": "David MacNeil <davidpetermacneil@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DaveMacNeil/NT-API/issues"
},
"homepage": "https://github.com/DaveMacNeil/NT-API",
"dependencies": {
"@nestjs/common": "9.1.1",
"@nestjs/core": "9.1.1",
"@nestjs/platform-express": "9.1.1",
"dotenv": "16.0.2",
"pg": "8.5.1",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"rxjs": "7.5.6",
"typeorm": "0.3.9"
},
"devDependencies": {
"@nestjs/cli": "9.1.3",
"@nestjs/schematics": "9.0.3",
"@nestjs/testing": "9.1.1",
"@types/express": "4.17.13",
"@types/jest": "29.0.3",
"@types/node": "18.7.16",
"@types/supertest": "2.0.12",
"jest": "29.0.3",
"nodemon": "2.0.19",
"prettier": "2.7.1",
"source-map-support": "0.5.21",
"supertest": "6.2.4",
"ts-jest": "29.0.1",
"ts-node": "10.9.1"
}
}