-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
98 lines (98 loc) · 3.38 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
97
98
{
"name": "copa-backend",
"title": "COPA API",
"version": "1.4.0",
"description": "COPA is tournament managment tool",
"license": "Apache-2.0",
"authors": [
"Gery Hirschfeld <[email protected]> (https://github.com/copa-ch)",
"Robert Kleger <DaNautilus> (https://github.com/copa-ch)"
],
"repository": {
"type": "git",
"url": "https://github.com/copa-ch/copa-backend.git"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"serve": "npm run start:dev",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"migrate:create": "ts-node ./node_modules/typeorm/cli.js migrations:create",
"migrate:generate": "ts-node ./node_modules/typeorm/cli.js migrations:generate",
"migrate:run": "ts-node ./node_modules/typeorm/cli.js migration:run",
"schema:drop": "ts-node ./node_modules/typeorm/cli.js schema:drop",
"schema:sync": "ts-node ./node_modules/typeorm/cli.js schema:sync",
"schema:log": "ts-node ./node_modules/typeorm/cli.js schema:log",
"seed:run": "ts-node ./node_modules/typeorm-seeding/dist/cli.js seed",
"seed:config": "ts-node ./node_modules/typeorm-seeding/dist/cli.js config",
"db:setup": "yarn run schema:drop && yarn run migrate:run && yarn run seed:run",
"semantic-release": "semantic-release"
},
"dependencies": {
"@nestjs/common": "^7.0.0",
"@nestjs/config": "^0.4.0",
"@nestjs/core": "^7.0.0",
"@nestjs/platform-express": "^7.0.0",
"@nestjs/serve-static": "^2.1.0",
"@nestjs/swagger": "^4.5.1",
"@nestjs/typeorm": "^7.0.0",
"class-transformer": "^0.2.3",
"class-validator": "^0.11.1",
"compression": "^1.7.4",
"express-rate-limit": "^5.1.1",
"handlebars": "^4.7.6",
"helmet": "^3.22.0",
"lodash": "^4.17.15",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"nocache": "^2.1.0",
"nodemailer": "^6.4.6",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"shortid": "^2.2.15",
"swagger-ui-express": "^4.1.4",
"typeorm": "^0.2.24",
"typeorm-seeding": "^1.5.0"
},
"devDependencies": {
"@nestjs/cli": "^7.0.0",
"@nestjs/schematics": "^7.0.0",
"@nestjs/testing": "^7.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.5",
"@types/express": "^4.17.6",
"@types/jest": "25.2.1",
"@types/node": "^13.11.1",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"jest": "^25.3.0",
"prettier": "^2.0.4",
"semantic-release": "^17.0.4",
"sqlite": "^4.0.7",
"sqlite3": "^4.2.0",
"supertest": "^4.0.2",
"ts-jest": "25.3.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.8.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.7.4"
},
"resolutions": {
"minimist": "^1.2.5",
"mem": " >=4.0.0"
}
}