-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
77 lines (76 loc) · 3.23 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
{
"name": "winget-api",
"version": "0.2.0",
"description": "view winget packages",
"author": {
"name": "Feinwaru",
"email": "[email protected]",
"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 | yarn pino-pretty -c -l",
"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 | yarn pino-pretty -c -l",
"run:prod": "yarn cross-env NODE_ENV=prod NODE_PATH=. node dist",
"kube:dev": "telepresence --swap-deployment api --namespace winget-run-dev --expose 3000 --method inject-tcp --run yarn cross-env NODE_ENV=dev NODE_PATH=. node -r dotenv/config -r source-map-support/register dist | yarn pino-pretty -c -l",
"kube:hot": "telepresence --swap-deployment api --namespace winget-run-dev --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 | yarn pino-pretty -c -l",
"kube:cunt": "telepresence --swap-deployment api --namespace winget-run-dev --expose 3000 --run yarn cross-env NODE_ENV=dev NODE_PATH=. yarn nodemon -r dotenv/config -r source-map-support/register dist --watch dist --watch .env | yarn pino-pretty -c -l",
"clean": "rm -rf dist coverage",
"format:check": "echo format:check",
"lint:check": "echo lint:check",
"test:check": "echo test:check",
"build:check": "echo build:check"
},
"dependencies": {
"@types/encoding-japanese": "^1.0.15",
"@types/lodash": "^4.14.153",
"@types/moment": "^2.13.0",
"bson": "^4.0.4",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"encoding-japanese": "^1.0.30",
"fastify": "^2.15.1",
"fastify-cors": "^3.0.3",
"js-yaml": "^3.14.0",
"moment": "^2.27.0",
"mongodb": "^3.5.7",
"natural": "^2.1.5",
"node-cache": "^5.1.2",
"node-fetch": "^2.6.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.25",
"uuid-mongodb": "^2.3.0"
},
"devDependencies": {
"@types/bson": "^4.0.2",
"@types/dotenv": "^8.2.0",
"@types/jest": "^25.2.3",
"@types/js-yaml": "^3.12.4",
"@types/mongodb": "^3.5.18",
"@types/natural": "^0.6.3",
"@types/node": "^14.0.5",
"@types/node-cache": "^4.2.5",
"@types/node-fetch": "^2.5.7",
"@types/source-map-support": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.0.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"pino-pretty": "^4.1.0",
"serve": "^11.3.0",
"source-map-support": "^0.5.19",
"ts-jest": "^26.0.0",
"typescript": "^3.9.3"
}
}