This repository was archived by the owner on Jun 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.82 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": "gauntlet",
"version": "0.1.0",
"description": "Gauntlet is a Typescript server template to kick-off your development fast 🔥🔥🔥",
"main": "./dist/server/main.js",
"scripts": {
"build": "npm run build:server && npm run build:client",
"build:server": "rimraf ./dist/server && tsc --project ./src/server",
"build:client": "rimraf ./dist/client && webpack --progress --colors",
"test": "npm run e2e:test && npm run unit:test",
"e2e:test": "cross-env NODE_ENV=test npm run build:server && jest --testPathPattern .*.controller.test.js",
"unit:test": "cross-env NODE_ENV=test npm run build:server && jest --testPathPattern .*.service.test.js",
"migration:up": "typeorm migrations:run",
"migration:down": "typeorm migrations:revert",
"watch:client": "webpack --progress --watch",
"start": "node ./dist/server/main.js",
"heroku-postbuild": "npm run build"
},
"author": "UltraRangers",
"license": "MIT",
"dependencies": {
"@angular/animations": "^5.2.9",
"@angular/cdk": "^5.2.4",
"@angular/common": "^5.2.9",
"@angular/compiler": "^5.2.9",
"@angular/core": "^5.2.9",
"@angular/forms": "^5.2.9",
"@angular/http": "^5.2.9",
"@angular/material": "^5.2.4",
"@angular/platform-browser": "^5.2.9",
"@angular/platform-browser-dynamic": "^5.2.9",
"@angular/router": "^5.2.9",
"@nestjs/common": "^4.6.6",
"@nestjs/core": "^4.6.6",
"@nestjs/microservices": "^4.6.6",
"@nestjs/testing": "^4.6.6",
"@nestjs/typeorm": "^2.0.0",
"@nestjs/websockets": "^4.6.6",
"bcrypt": "^1.0.3",
"core-js": "^2.5.3",
"express": "^4.16.3",
"glob": "^7.1.2",
"jsonwebtoken": "^8.2.0",
"lodash": "^4.17.5",
"normalize-scss": "^7.0.1",
"pg": "^7.4.1",
"rxjs": "^5.5.7",
"typeorm": "^0.1.16",
"zone.js": "^0.8.20"
},
"devDependencies": {
"@types/bcrypt": "^1.0.0",
"@types/chai": "^4.1.2",
"@types/express": "^4.11.1",
"@types/jest": "^22.2.0",
"@types/jsonwebtoken": "^7.2.6",
"@types/lodash": "^4.14.105",
"@types/node": "^9.4.7",
"@types/supertest": "^2.0.4",
"angular-router-loader": "^0.8.2",
"angular2-template-loader": "^0.6.2",
"chai": "^4.1.2",
"cross-env": "^5.1.4",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.0.6",
"jest": "^22.4.2",
"node-sass": "^4.7.2",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"supertest": "^3.0.0",
"ts-loader": "^4.1.0",
"tsconfig-paths-webpack-plugin": "^3.0.2",
"tslint": "^5.9.1",
"typescript": "^2.7.2",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12",
"webpack-merge": "^4.1.2"
},
"jest": {
"rootDir": "./dist/server"
}
}