forked from alkem-io/server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.56 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.56 KB
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
{
"name": "cherrytwist-server",
"version": "0.7.0",
"description": "Cherrytwist server, responsible for managing the shared representation of the ecoverse",
"author": "Cherrytwist Foundation",
"private": false,
"license": "EUPL",
"main": "src/main.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start-nodemon": "nodemon -w src --ext ts --exec ts-node src/main.ts",
"start-nodemon-local": "nodemon -w src --ext ts --exec ts-node -r dotenv/config src/main.ts",
"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",
"test:e2e": "jest --detectOpenHandles --runInBand --config ./test/jest-e2e.json",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js --config src/config/typeorm.cli.config.ts",
"migration:create": "npm run typeorm migration:create -- -n",
"migration:generate": "npm run typeorm migration:generate -- -n",
"migration:run": "npm run typeorm migration:run",
"migration:revert": "npm run typeorm migration:revert",
"migration:show": "npm run typeorm migration:show"
},
"dependencies": {
"@microsoft/microsoft-graph-client": "^2.1.0",
"@nestjs/common": "^7.4.4",
"@nestjs/config": "^0.5.0",
"@nestjs/core": "^7.4.4",
"@nestjs/graphql": "^7.7.0",
"@nestjs/passport": "^7.1.0",
"@nestjs/platform-express": "^7.0.0",
"@nestjs/typeorm": "^7.1.4",
"apollo-server-express": "^2.18.1",
"cd": "^0.3.3",
"cherrytwist-lib": "^0.4.4",
"class-validator": "^0.12.2",
"elastic-apm-node": "^3.7.0",
"graphql": "^15.3.0",
"graphql-tools": "^6.2.4",
"isomorphic-fetch": "^3.0.0",
"msal": "^1.4.1",
"mysql": "^2.18.1",
"nest-winston": "^1.4.0",
"node-cache": "^5.1.2",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.4",
"normalizer": "^1.2.7",
"passport": "^0.4.1",
"passport-azure-ad": "^4.3.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^6.6.3",
"typeorm": "^0.2.28",
"winston": "^3.3.3",
"winston-elasticsearch": "^0.12.0"
},
"devDependencies": {
"@microsoft/microsoft-graph-types": "^1.23.0",
"@nestjs/cli": "^7.0.0",
"@nestjs/schematics": "^7.0.0",
"@nestjs/testing": "^7.0.0",
"@types/express": "^4.17.3",
"@types/jest": "^26.0.10",
"@types/node": "^13.9.1",
"@types/node-fetch": "^2.5.7",
"@types/passport-azure-ad": "^4.0.7",
"@types/passport-local": "^1.0.33",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "3.9.1",
"@typescript-eslint/parser": "3.9.1",
"eslint": "7.7.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.4",
"jest": "26.4.2",
"prettier": "^1.19.1",
"supertest": "^4.0.2",
"ts-jest": "26.2.0",
"ts-loader": "^6.2.1",
"ts-node": "9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.7.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}