-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.56 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "footstats",
"version": "1.0.0",
"description": "Pequeña aplicación para que los entrenadores guarden las estadísticas de su equipo para dirigir mejor los entrenamientos.",
"main": "src/main.ts",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "nest start",
"start:prod": "pm2 start dist/main.js -i 0",
"start:docker": "pm2-runtime dist/main.js",
"build": "nest build",
"test": "jest",
"test:cov": "jest --ci --coverage",
"coverage-report": "codecov",
"lint": "eslint --ext .js,.ts src/ tests/ functions/ telegram/",
"format": "prettier --write \"src/**/*.ts\" \"tests/*.ts\"",
"doc": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ManuelJNunez/footStats.git"
},
"author": "Manuel Jesus Nuñez Ruiz",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ManuelJNunez/footStats/issues"
},
"homepage": "https://github.com/ManuelJNunez/footStats#readme",
"devDependencies": {
"@golevelup/nestjs-testing": "^0.1.2",
"@nestjs/cli": "^7.5.4",
"@nestjs/testing": "^7.6.5",
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.20",
"@types/pg": "^7.14.7",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"codecov": "^3.8.1",
"eslint": "^7.17.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typedoc": "^0.19.2",
"typescript": "^4.1.3"
},
"dependencies": {
"@nestjs/common": "^7.6.5",
"@nestjs/config": "^0.6.1",
"@nestjs/core": "^7.6.5",
"@nestjs/jwt": "^7.2.0",
"@nestjs/platform-express": "^7.6.5",
"bcrypt": "^5.0.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"dotenv": "^8.2.0",
"etcd3": "^1.1.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^6.6.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"roots": [
"src",
"tests"
],
"testRegex": [
".*\\.spec.ts$",
".*\\.integration-spec.ts$"
],
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "./coverage",
"testEnvironment": "node"
}
}