-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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": "nest-babel-starter",
"version": "1.0.0",
"description": "Nest Babel starter repository",
"license": "MIT",
"scripts": {
"format": "prettier --write \"**/*.js\"",
"start": "babel-node index.js",
"start:dev": "nodemon",
"test": "jest",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"dependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.4.6",
"@nestjs/platform-express": "^10.4.5",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.5"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/node": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/register": "^7.18.6",
"@babel/runtime": "^7.18.6",
"@nestjs/testing": "^10.0.0",
"jest": "^28.1.2",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"supertest": "^6.2.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json"
],
"rootDir": "src",
"testRegex": ".spec.js$",
"coverageDirectory": "../coverage"
}
}