-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.5 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
56
57
58
59
60
61
{
"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": "NODE_ENV=local nodemon",
"test": "jest",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"dependencies": {
"@nestjs/common": "^10.3.9",
"@nestjs/config": "^3.2.2",
"@nestjs/core": "^10.3.9",
"@nestjs/platform-express": "^10.3.9",
"deepdash": "^5.3.9",
"lodash": "^4.17.21",
"matrix-js-sdk": "^26.2.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/node": "^7.24.6",
"@babel/plugin-proposal-decorators": "^7.24.6",
"@babel/plugin-transform-runtime": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/register": "^7.24.6",
"@babel/runtime": "^7.24.6",
"@nestjs/testing": "^10.3.9",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard": "^17.1.0",
"jest": "^29.7.0",
"nodemon": "^3.1.3",
"prettier": "^3.3.0",
"supertest": "^7.0.0"
},
"eslintConfig": {
"extends": [
"react-app",
"standard"
],
"parserOptions": {
"ecmaFeatures": {
"legacyDecorators": true
}
}
},
"jest": {
"moduleFileExtensions": [
"js",
"json"
],
"rootDir": "src",
"testRegex": ".spec.js$",
"coverageDirectory": "../coverage"
}
}