-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 734 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 734 Bytes
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
{
"name": "react-typescript-nest-typeorm-example",
"version": "1.0.0",
"author": {
"name": "Pedro Fernandes"
},
"categories": [
"Snippets"
],
"main": "index.js",
"license": "MIT",
"scripts": {
"dev:server": "nodemon src/server/index.ts"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/node": "^12.0.8",
"concurrently": "^4.1.0",
"nodemon": "^1.19.1",
"ts-node": "^8.3.0",
"tslint": "^5.17.0",
"typescript": "^3.5.2"
},
"dependencies": {
"@nestjs/common": "^6.3.1",
"@nestjs/core": "^6.3.1",
"@nestjs/platform-express": "^6.3.1",
"express": "^4.17.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.2",
"typeorm": "^0.2.18"
}
}