This repository has been archived by the owner on Sep 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.85 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
{
"name": "hephaestus",
"version": "0.0.0",
"author": "Daniel Weiß <[email protected]> (https://github.com/WanielDeiss)",
"scripts": {
"docker:build": "docker build --rm -f \"Dockerfile\" -t hephaestus:latest \".\"",
"docker:run": "docker run --rm -d -p 3000:3000/tcp hephaestus:latest",
"nest:prebuild": "rimraf dist/server",
"nest:build": "npm run nest:prebuild && nest build",
"nest:format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"nest:start": "nest start",
"nest:start:dev": "nest start --watch",
"nest:start:debug": "nest start --debug --watch",
"nest:start:prod": "node dist/main",
"nest:lint": "eslint \"server/{src,apps,libs,test}/**/*.ts\" --fix",
"ng": "ng",
"ng:start": "ng serve",
"ng:prebuild": "rimraf dist/client",
"ng:build": "npm run ng:prebuild && ng build",
"ng:lint": "ng lint",
"test": "jest --config=jest.config.js",
"test:watch": "jest --watch --config=jest.config.js",
"test:coverage": "jest --coverage --config=jest.config.js"
},
"private": false,
"dependencies": {
"@angular/animations": "^10.0.4",
"@angular/common": "^10.0.4",
"@angular/compiler": "^10.0.4",
"@angular/core": "^10.0.4",
"@angular/forms": "^10.0.4",
"@angular/platform-browser": "^10.0.4",
"@angular/platform-browser-dynamic": "^10.0.4",
"@angular/router": "^10.0.4",
"@godaddy/terminus": "^4.3.1",
"@nestjs/common": "^7.3.2",
"@nestjs/config": "^0.3.0",
"@nestjs/core": "^7.3.2",
"@nestjs/platform-fastify": "^7.3.2",
"@nestjs/swagger": "^4.5.12",
"@nestjs/terminus": "^6.5.6",
"fastify-swagger": "^2.5.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1000.3",
"@angular/cli": "^10.0.3",
"@angular/compiler-cli": "^10.0.4",
"@angular/language-service": "^10.0.4",
"@nestjs/cli": "^6.14.2",
"@nestjs/schematics": "^6.9.4",
"@nestjs/testing": "^6.11.11",
"@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",
"codelyzer": "^6.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"jest": "^25.1.0",
"jest-preset-angular": "^8.1.1",
"prettier": "^1.19.1",
"protractor": "~7.0.0",
"supertest": "^4.0.2",
"ts-jest": "25.2.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"tsconfig-paths": "^3.9.0",
"tslint": "~6.1.0",
"typescript": "~3.9.7"
},
"license": {
"type": "MIT",
"url": "https://github.com/WanielDeiss/hephaestus/blob/master/LICENSE"
},
"repository": {
"type": "git",
"url": "github:WanielDeiss/hephaestus"
}
}