-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 3.19 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
{
"name": "athena-api",
"version": "0.0.3",
"description": "Api open source de l'application Athena",
"author": "",
"license": "LGPL-3.0",
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"build": "npm run copy-public && nest build",
"start": "npm run copy-public && nest start",
"start:dev": "npm run copy-public && nest start --watch",
"start:debug": "npm run copy-public && nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "tslint -p tsconfig.json -c tslint.json",
"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",
"test:e2e": "rimraf dist && npm run copy-public && jest --config ./test/jest-e2e.json --forceExit --watch ./src",
"test:ci": "rimraf dist && npm run test:sync && npm run test:run:seed && npm run copy-public && jest --config ./test/jest-e2e.json --forceExit",
"release": "standard-version",
"prepare": "copyfiles --flat .githooks/* .git/hooks/",
"copy-public": "copyfiles public/* dist/",
"test:sync": "ts-node ./node_modules/typeorm/cli.js schema:sync -d ./test/typeorm.test-config-migrations.ts",
"test:run:seed": "ts-node ./node_modules/typeorm/cli.js migration:run -d ./test/typeorm.test-config-migrations.ts",
"schema:drop": "ts-node ./node_modules/typeorm/cli.js schema:drop",
"schema:sync": "ts-node ./node_modules/typeorm/cli.js schema:sync"
},
"dependencies": {
"@google-cloud/storage": "^6.5.4",
"@nestjs/axios": "0.1.0",
"@nestjs/common": "^9.0.3",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.0.3",
"@nestjs/cqrs": "^9.0.1",
"@nestjs/event-emitter": "^2.0.3",
"@nestjs/platform-express": "^9.0.3",
"@nestjs/schedule": "^2.1.0",
"@nestjs/typeorm": "^9.0.0",
"chance": "^1.1.9",
"cheerio": "^1.0.0-rc.12",
"firebase-admin": "^11.3.0",
"html-entities": "^1.2.1",
"ioredis": "^5.2.1",
"microsoft-cognitiveservices-speech-sdk": "^1.24.1",
"mysql2": "^2.3.3",
"pubsubhubbub": "^1.0.1",
"reflect-metadata": "^0.1.12",
"rxjs": "7.2.0",
"typeorm": "^0.3.7",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@nestjs/cli": "9.0.0",
"@nestjs/testing": "^9.0.3",
"@types/chance": "^1.1.3",
"@types/cron": "^1.7.3",
"@types/express": "^4.16.0",
"@types/html-entities": "^1.2.16",
"@types/jest": "^27.0.0",
"@types/node": "^16.0.0",
"@types/supertest": "^2.0.10",
"@types/xml2js": "^0.4.7",
"concurrently": "^5.3.0",
"copyfiles": "^2.4.1",
"jest": "^27.0.6",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"standard-version": "^9.5.0",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.3",
"typescript": "^4.3.5",
"wait-on": "^5.2.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}