-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 4.01 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "todos-apis-nestjs",
"groupId": "fr.fdescamps",
"artifactId": "todos-apis-nestjs",
"version": "2.0.0",
"description": "A small project in NestJS on Microsoft Azure",
"license": "MIT License",
"author": {
"name": "François Descamps",
"organization": "Développeurs"
},
"engines": {
"version": "10.15.x",
"npm": "6.4.x"
},
"repository": {
"type": "git",
"url": "git@github.com:fdescamps/todos-apis-nestjs.git"
},
"main": "src/main.js",
"scripts": {
"start": "NODE_PATH=./dist NODE_ENV=dva node ./dist/src/main.js",
"prebuild": "rimraf ./dist && npm install",
"build": "tsc -p tsconfig.build.json && npm run copyFilesIntoDist",
"copyFilesIntoDist": "copyfiles \"package.json\" \"LICENSE.txt\" \"README.md\" \"ts*.json\" \".env\" \"./node_modules/**\" \"./dist\"",
"format": "prettier --write \"src/**/*.ts\"",
"start:dev": "cross-env AUTH_ENABLED=false IS_DEV_ENV=true NODE_ENV=dva nodemon",
"start:debug": "cross-env IS_DEV_ENV=true NODE_ENV=dva nodemon --config nodemon-debug.json",
"prestart:prod": "rimraf ./dist && npm install && npm run build",
"start:prod": "NODE_PATH=./dist NODE_ENV=dva node ./dist/src/main.js",
"lint": "tslint --fix -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": "NODE_ENV=dva jest --config ./test/jest-e2e.json",
"test:all": "npm run lint && npm run test:cov && npm run test:e2e && npm run test:keyfeatures",
"changelog": "git-release-notes 2dcda80.. markdown > changelog.md",
"doc": "npx compodoc -p tsconfig.json -s"
},
"dependencies": {
"@godaddy/terminus": "^4.1.0",
"@nestjs/common": "^6.0.2",
"@nestjs/core": "^6.0.2",
"@nestjs/microservices": "^6.0.2",
"@nestjs/mongoose": "^6.1.2",
"@nestjs/platform-express": "^6.0.2",
"@nestjs/swagger": "^3.0.2",
"@nestjs/terminus": "^6.1.0",
"@nestjs/testing": "^6.0.2",
"@nestjs/websockets": "^6.0.2",
"@types/cls-hooked": "^4.3.0",
"@types/joi": "^14.3.3",
"@types/opossum": "^1.10.0",
"applicationinsights": "^1.3.1",
"axios": "^0.18.0",
"azure-keyvault": "^3.0.4",
"basic-auth": "^2.0.1",
"cache-manager": "^2.9.0",
"cls-hooked": "^4.2.2",
"cross-env": "^5.2.0",
"csurf": "^1.9.0",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"express-rate-limit": "^3.4.0",
"helmet": "^3.16.0",
"joi": "^14.3.1",
"jwks-rsa": "^1.4.0",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"mongodb-uri": "^0.9.7",
"mongoose": "^5.5.13",
"morgan": "^1.9.0",
"ms-rest-azure": "^2.6.0",
"opossum": "^1.10.1",
"promise-retry": "^1.1.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^2.6.2",
"rxjs": "^6.4.0",
"swagger-ui-express": "^4.0.2",
"uuid": "^3.3.2",
"win-ca": "^2.4.1",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.8.0"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.9",
"@types/express": "^4.16.1",
"@types/express-jwt": "^0.0.42",
"@types/jest": "^24.0.11",
"@types/mongoose": "^5.2.6",
"@types/node": "^11.11.5",
"@types/supertest": "^2.0.5",
"copyfiles": "^2.1.0",
"git-release-notes": "^4.0.1",
"jest": "^24.7.1",
"jest-cucumber": "^2.0.11",
"nodemon": "^1.18.10",
"prettier": "^1.16.4",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"tsconfig-paths": "^3.8.0",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.4.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testMatch": [
"**/*.spec.ts",
"**/*.steps.ts"
],
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}