-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.31 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
{
"name": "uinta-api",
"version": "2.0.0",
"engines": {
"node": "6.10.0"
},
"description": "Base API for Uinta Applications",
"license": "MIT",
"scripts": {
"start": "node index.js",
"prestart:prod": "tsc",
"start:prod": "node dist/server.js",
"build": "tsc && npm run docs",
"test": "jest --config ./jest.config.json --coverage",
"test:watch": "jest --config ./jest.config.json --watch",
"lint": "tslint -p ./tsconfig.json",
"posttest": "codecov -f coverage/*.json",
"docs": "./node_modules/.bin/apidoc -i ./src/app -o bin/docs",
"e2e": "jest --config ./jest.e2e.config.js --forceExit",
"ci": "npm run test && npm run e2e",
"watch": "tsc -w",
"serve": "nodemon -e ts --watch src --exec \"npm run build && npm run start\" ",
"heroku-postbuild": "npm install --only=dev && npm run build"
},
"dependencies": {
"@nestjs/common": "^4.1.1",
"@nestjs/core": "^4.1.3",
"@nestjs/microservices": "^4.1.0",
"@nestjs/testing": "^4.1.0",
"@nestjs/websockets": "^4.1.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.2",
"class-transformer": "^0.1.7",
"class-validator": "0.7.3",
"dotenv": "^4.0.0",
"jsonwebtoken": "^8.1.0",
"mongoose": "^4.12.1",
"passport": "^0.4.0",
"passport-jwt": "^3.0.0",
"redis": "^2.7.1",
"reflect-metadata": "^0.1.10",
"rxjs": "^5.4.3"
},
"devDependencies": {
"@types/async": "^2.0.44",
"@types/bcrypt-nodejs": "0.0.30",
"@types/body-parser": "^1.16.5",
"@types/connect-mongo": "0.0.34",
"@types/express": "^4.0.36",
"@types/jest": "^21.1.4",
"@types/mongoose": "^4.7.23",
"@types/node": "8.0.46",
"@types/passport": "^0.3.4",
"@types/passport-facebook": "^2.1.6",
"@types/passport-jwt": "^2.0.24",
"@types/passport-local": "^1.0.31",
"apidoc": "^0.17.6",
"codecov": "^3.0.0",
"cz-conventional-changelog": "^2.0.0",
"jest": "^21.2.1",
"nodemon": "^1.12.1",
"npm-run-all": "^4.1.1",
"supertest": "^3.0.0",
"ts-jest": "^21.1.3",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"typescript": "^2.5.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"apidoc": {
"title": "Uintasoft",
"version": "1.0.0",
"url": "https://api.uintasoft.com"
}
}