-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.54 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
{
"name": "air-monitoring-backend",
"version": "1.0.0",
"description": "Backend for the Air Monitoring PWA project.",
"author": "Ali Raiki & Raphaël Dhôte",
"private": true,
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://gitlab.illuin.tech/3ACentrale/2020-air-monitoring-pwa/air-monitoring-backend"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"fetch-external-data": "ts-node ./src/scripts/fetch-external-data/run.ts",
"format": "prettier --write .",
"format:ci": "prettier --check .",
"generate-entity": "npm run typeorm entity:create -- -n",
"generate-migration": "npm run typeorm migration:create -- -n",
"lint": "eslint . --fix",
"lint:ci": "eslint . --format stylish",
"lockfile-lint": "npx lockfile-lint --path package-lock.json --type npm --validate-https --allowed-hosts npm",
"merge-coverage": "ts-node ./src/scripts/merge-coverage/run.ts",
"migrate": "npm run typeorm migration:run",
"migrate:prod": "cd dist && node ../node_modules/typeorm/cli.js migration:run",
"snyk:auth": "npx snyk auth",
"snyk:monitor": "npx snyk monitor",
"snyk:test": "npx snyk test",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"test": "npm run test:unit && npm run test:e2e",
"test:cov": "COV_OUTPUT=\"false\" npm run test:unit:cov && COV_OUTPUT=\"false\" npm run test:e2e:cov && npm run merge-coverage",
"test:unit": "IS_TS_NODE=\"true\" jest --config jest.unit.config.ts",
"test:unit:cov": "npm run test:unit -- --coverage",
"test:unit:watch": "npm run test:unit -- --watch",
"test:unit:debug": "IS_TS_NODE=\"true\" node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand --config jest.unit.config.ts",
"test:e2e": "IS_TS_NODE=\"true\" jest --config jest.e2e.config.ts --runInBand",
"test:e2e:cov": "npm run test:e2e -- --coverage",
"test:e2e:watch": "npm run test:e2e -- --watch",
"test:e2e:debug": "IS_TS_NODE=\"true\" node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand --config jest.e2e.config.ts",
"typeorm": "ts-node ./node_modules/typeorm/cli.js",
"unmigrate": "npm run typeorm migration:revert"
},
"dependencies": {
"@nestjs/common": "7.6.15",
"@nestjs/core": "7.6.15",
"@nestjs/platform-express": "7.6.15",
"@nestjs/typeorm": "7.1.5",
"class-transformer": "0.4.0",
"class-validator": "0.13.1",
"dayjs": "1.10.4",
"node-fetch": "2.6.1",
"pg": "8.5.1",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"typeorm": "0.2.32"
},
"devDependencies": {
"@jest/types": "26.6.2",
"@nestjs/cli": "7.6.0",
"@nestjs/schematics": "7.3.1",
"@nestjs/testing": "7.6.15",
"@types/express": "4.17.11",
"@types/jest": "26.0.22",
"@types/mkdirp": "1.0.1",
"@types/node": "14.14.41",
"@types/node-fetch": "2.5.10",
"@types/supertest": "2.0.11",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"dotenv": "8.2.0",
"eslint": "7.24.0",
"eslint-config-prettier": "8.2.0",
"eslint-plugin-prettier": "3.3.1",
"istanbul-lib-coverage": "3.0.0",
"istanbul-lib-report": "3.0.0",
"istanbul-reports": "3.0.2",
"jest": "26.6.3",
"mkdirp": "1.0.4",
"prettier": "2.2.1",
"supertest": "6.1.3",
"ts-jest": "26.5.5",
"ts-loader": "8.1.0",
"ts-node": "9.1.1",
"tsconfig-paths": "3.9.0",
"typescript": "4.2.4"
}
}