-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
130 lines (130 loc) · 3.79 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
128
129
130
{
"name": "angular-nest",
"version": "0.0.1",
"description": "Angular 13 (ngx-admin) + NestJS 8 boilerplate to easily start your own frontend + backend project",
"author": "Wilfried Lucha <[email protected]>",
"homepage": "https://lucha.at",
"license": "MIT",
"contributors": [
"Wilfried Lucha <[email protected]>"
],
"keywords": [
"angular",
"angular 13",
"angular-nest",
"angular nest",
"angular-starter",
"angular starter",
"angular-boilerplate",
"angular boilerplate",
"angular-template",
"angular template",
"nest",
"nest js",
"nestjs",
"nest-js",
"eslint"
],
"repository": "https://github.com/wlucha/angular-nest.git",
"bugs": {
"url": "https://github.com/wlucha/angular-nest/issues"
},
"readme": "https://github.com/wlucha/angular-nest/blob/master/README.md",
"private": false,
"scripts": {
"prebuild": "rimraf dist",
"ng": "ng",
"build-nest": "nest build",
"build-angular": "ng build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start-angular": "ng serve",
"start-angular:prod": "ng serve --configuration production",
"start-nest": "nest start",
"start-nest:dev": "nest start --watch",
"start-nest:debug": "nest start --debug --watch",
"start-nest: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 --config ./test/jest-e2e.json"
},
"dependencies": {
"@angular/animations": "~13.1.1",
"@angular/cdk": "^13.1.1",
"@angular/common": "~13.1.1",
"@angular/compiler": "~13.1.1",
"@angular/core": "~13.1.1",
"@angular/forms": "~13.1.1",
"@angular/platform-browser": "~13.1.1",
"@angular/platform-browser-dynamic": "~13.1.1",
"@angular/router": "~13.1.1",
"@nebular/auth": "9.0.0",
"@nebular/eva-icons": "9.0.0",
"@nebular/security": "9.0.0",
"@nebular/theme": "9.0.0",
"@nestjs/common": "^8.2.4",
"@nestjs/core": "^8.2.4",
"@nestjs/platform-express": "^8.2.4",
"@nestjs/swagger": "^5.1.5",
"bootstrap": "4.3.1",
"classlist.js": "1.1.20150312",
"eva-icons": "^1.1.3",
"intl": "1.2.5",
"ionicons": "2.0.1",
"nebular-icons": "1.1.0",
"node-sass": "^4.12.0",
"normalize.css": "6.0.0",
"pace-js": "1.0.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"roboto-fontface": "0.8.0",
"rxjs": "~6.5.4",
"socicon": "3.0.5",
"style-loader": "^1.1.3",
"swagger-ui-express": "^4.3.0",
"tslib": "^2.0.0",
"typeface-exo": "0.0.22",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.1.2",
"@angular/cli": "~13.1.2",
"@angular/compiler-cli": "~13.1.1",
"@nestjs/cli": "^8.1.6",
"@nestjs/schematics": "^8.0.5",
"@nestjs/testing": "^8.2.4",
"@types/express": "^4.17.3",
"@types/jest": "25.1.4",
"@types/node": "^13.9.1",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"supertest": "^4.0.2",
"ts-jest": "25.2.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"tsconfig-paths": "^3.9.0",
"typescript": "4.5.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}