-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.32 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
{
"name": "risnode-admin",
"version": "2.0.0",
"description": "None",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start:watch": "nodemon",
"prestart:prod": "tsc",
"start:prod": "node dist/main.js",
"build": "tsc -p tsconfig.build.json",
"test": "jest --config=jest.json",
"test:watch": "jest --watch --config=jest.json",
"test:coverage": "jest --config=jest.json --coverage --coverageDirectory=coverage",
"compodoc": "npx compodoc -p tsconfig.json -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/riantis/risnode-admin.git"
},
"author": "robert.weemhoffb@riantis.de",
"license": "ISC",
"bugs": {
"url": "https://riantis.com/issues"
},
"homepage": "https://riantis.com",
"dependencies": {
"@nestjs/common": "^7.1.1",
"@nestjs/config": "^0.5.0",
"@nestjs/core": "^7.1.1",
"@nestjs/microservices": "^7.1.1",
"@nestjs/platform-express": "^7.1.1",
"@nestjs/swagger": "^4.5.8",
"@nestjs/typeorm": "^7.1.0",
"@nestjs/websockets": "^7.1.1",
"@types/jsonwebtoken": "^8.5.0",
"argon2": "^0.26.2",
"class-transformer": "^0.2.3",
"class-validator": "^0.12.2",
"crypto": "^1.0.1",
"crypto-js": "^4.0.0",
"dotenv": "^8.2.0",
"jsonwebtoken": "^8.5.1",
"mssql": "^6.2.0",
"passport-jwt": "^4.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^6.5.5",
"slug": "^3.2.0",
"swagger-ui-express": "^4.1.4",
"typeorm": "^0.2.25",
"typescript": "^3.9.3"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.11",
"@nestjs/cli": "^7.2.0",
"@nestjs/schematics": "^7.0.0",
"@nestjs/testing": "^7.1.1",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.5",
"@types/supertest": "^2.0.9",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"atob": ">=2.1.2",
"deep-extend": ">=0.6.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"extend": ">=3.0.2",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"supertest": "^4.0.2",
"ts-jest": "^26.0.0",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.1",
"tsconfig-paths": "^3.9.0"
}
}