forked from nestjs/nest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 772 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 772 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
{
"name": "nest-babel-starter",
"version": "1.0.0",
"description": "Nest Babel starter repository",
"license": "MIT",
"scripts": {
"build": "babel src -d dist",
"prestart": "npm run build",
"start": "node index.js"
},
"dependencies": {
"@nestjs/common": "^5.0.0",
"@nestjs/core": "^5.0.0",
"@nestjs/microservices": "^5.0.0",
"@nestjs/testing": "^5.0.0",
"@nestjs/websockets": "^5.0.0",
"babel-core": "^6.26.0",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.17.2",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.24.1"
}
}