-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.84 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.84 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
{
"name": "identity",
"version": "0.2.0",
"description": "Identity microservice for Bandsy",
"author": {
"name": "Feinwaru",
"email": "feinwaru@gmail.com",
"url": "https://feinwaru.com"
},
"license": "UNLICENSED",
"private": true,
"scripts": {
"lint": "yarn eslint . --ext .ts",
"lint:fix": "yarn eslint . --ext .ts --fix",
"test": "yarn cross-env NODE_ENV=test NODE_PATH=. yarn jest --coverage",
"test:watch": "yarn cross-env NODE_ENV=test NODE_PATH=. yarn jest --coverage --watchAll",
"view:coverage": "yarn serve coverage/lcov-report",
"build": "yarn tsc",
"build:watch": "yarn tsc --watch",
"run:dev": "yarn cross-env NODE_ENV=dev NODE_PATH=. node -r dotenv/config -r source-map-support/register dist",
"run:hot": "yarn cross-env NODE_ENV=dev NODE_PATH=. yarn nodemon -r dotenv/config -r source-map-support/register dist --watch dist --watch .env",
"kube:dev": "telepresence --swap-deployment identity --namespace develop --expose 3000 --method inject-tcp --run yarn cross-env NODE_ENV=dev NODE_PATH=. node -r dotenv/config -r source-map-support/register dist",
"kube:hot": "telepresence --swap-deployment identity --namespace develop --expose 3000 --method inject-tcp --run yarn cross-env NODE_ENV=dev NODE_PATH=. yarn nodemon -r dotenv/config -r source-map-support/register dist --watch dist --watch .env",
"run:prod": "yarn cross-env NODE_ENV=prod NODE_PATH=. node dist",
"clean": "rm -rf dist coverage"
},
"devDependencies": {
"@types/bson": "^4.0.2",
"@types/ejs": "^3.0.2",
"@types/ioredis": "^4.14.9",
"@types/jest": "^25.1.1",
"@types/jsonwebtoken": "^8.3.9",
"@types/mongoose": "^5.7.8",
"@types/node": "^13.11.0",
"@types/node-cache": "^4.2.5",
"@types/node-fetch": "^2.5.6",
"@types/nodemailer": "^6.4.0",
"@types/source-map-support": "^0.5.1",
"@types/uuid": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"serve": "^11.3.0",
"source-map-support": "^0.5.16",
"ts-jest": "^25.1.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@typegoose/typegoose": "^6.4.0",
"@types/fastify-cors": "^2.1.0",
"bson": "^4.0.4",
"cross-env": "^7.0.2",
"ejs": "^3.0.2",
"fastify": "^2.12.1",
"fastify-cookie": "^3.6.0",
"fastify-cors": "^3.0.3",
"fastify-plugin": "^1.6.1",
"hi-base32": "^0.5.0",
"inversify": "^5.0.1",
"ioredis": "^4.16.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.9",
"node-cache": "^5.1.0",
"node-fetch": "^2.6.0",
"nodemailer": "^6.4.6",
"reflect-metadata": "^0.1.13",
"uuid": "^7.0.3",
"uuid-mongodb": "^2.1.3"
}
}