-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.94 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.94 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "upnext-server",
"version": "0.0.1",
"description": "UpNext Server",
"license": "MIT",
"author": "",
"main": "./dist/src/app.js",
"scripts": {
"build": "yarn clean && yarn compile",
"clean": "rimraf ./dist && rimraf ./pack",
"compile": "tsc && webpack",
"pack": "pkg ./pack/server.js --out-path ./pkg",
"dev": "node ./generate-key.js && ts-node-dev -r tsconfig-paths/register --debug --cls --prefer-ts --inspect -- ./src/app.ts",
"generate-key": "openssl ecparam -name prime256v1 -genkey -noout -out ./key.pem",
"lint": "eslint . --ext .ts",
"serve": "node ./generate-key.js && node ./pack/server.js",
"start": "yarn serve"
},
"dependencies": {
"apollo-server-express": "^2.24.1",
"axios": "^0.21.2",
"body-parser": "^1.20.0",
"chalk": "^4.0.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"class-validator-jsonschema": "^2.0.3",
"cors": "^2.8.5",
"cron-decorators": "^0.1.5",
"dayjs": "^1.11.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"glob": "^7.1.6",
"graphql": "^15.5.0",
"graphql-type-json": "^0.3.2",
"is-there": "^4.5.1",
"jsonwebtoken": "^8.5.1",
"microframework": "^0.6.4",
"multer": "^1.4.2",
"node-vibrant": "^3.2.1-alpha.1",
"pg": "^8.6.0",
"qrcode": "^1.4.4",
"querystring": "^0.2.0",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0-alpha.6",
"routing-controllers-openapi": "^2.1.0",
"sha512": "^0.0.1",
"swagger-ui-express": "^4.1.2",
"type-graphql": "^1.1.1",
"typedi": "^0.8.0",
"typeorm": "^0.2.25",
"typeorm-typedi-extensions": "^0.2.3",
"uuid": "^8.3.2",
"validator": "^13.7.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/node": "^14.11.10",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.27.0",
"eslint-plugin-autofix": "^1.1.0",
"eslint-plugin-deprecation": "^1.3.2",
"eslint-plugin-immutable": "^1.0.0",
"eslint-plugin-jsdoc": "^35.1.2",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-radar": "^0.2.1",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-type-graphql": "^0.3.0",
"eslint-plugin-unicorn": "^32.0.1",
"eslint-plugin-woke": "^1.0.0",
"eslint-plugin-write-good-comments": "^0.1.3",
"nodemon": "^2.0.5",
"pkg": "^5.6.0",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.2",
"ts-node-dev": "^1.0.0-pre.44",
"tsconfig-paths": "^3.9.0",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.0.3",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-node-externals": "^3.0.0"
},
"packageManager": "yarn@3.3.1"
}