-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
108 lines (108 loc) · 3.28 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "qrgen",
"version": "2.3.2",
"description": "QrGen.cc is a free service that lets you create QR-Codes and shortened URLs from any link quickly and easily",
"main": "build/index.js",
"scripts": {
"client:serve": "vue-cli-service serve src/ui/main.js",
"client:build": "vue-cli-service build src/ui/main.js --dest build/dist",
"client:lint": "vue-cli-service lint src/ui/",
"server:dev": "./node_modules/.bin/tsc-watch --onSuccess \"nodemon ./build/index.js\"",
"server:build": "tsc -p tsconfig.json && npm run copy-views",
"server:lint": "eslint ./src/ --ext .ts",
"build": "npm run server:build && npm run client:build",
"copy-views": "mkdir -p ./build/views && cp -a ./src/views/. ./build/views/",
"start": "node ./build/index.js",
"lint": "npm run server:lint && npm run client:lint",
"test": "nyc --reporter=html --reporter=text ava --verbose",
"coverage": "nyc --reporter=lcov ava"
},
"author": "Maximilian Schiller <schiller@mxis.ch>",
"repository": {
"type": "git",
"url": "https://github.com/BetaHuhn/qrgen.git"
},
"bugs": {
"url": "https://github.com/BetaHuhn/qrgen/issues"
},
"homepage": "https://qrgen.cc",
"license": "MIT",
"dependencies": {
"@dotvirus/yxc": "0.0.6",
"compression": "^1.7.4",
"cors": "^2.8.5",
"debug": "^4.3.1",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-rate-limit": "^5.2.6",
"metadata-scraper": "^0.2.16",
"mongoose": "^5.12.3",
"nanoid": "^2.1.11",
"request": "^2.88.2",
"request-ip": "^2.1.3",
"running-at": "^0.3.14",
"signale": "^1.4.0",
"url-exists-deep": "^2.0.6",
"core-js": "^3.10.1",
"qrcode": "^1.4.4",
"register-service-worker": "^1.7.2",
"vue": "^2.6.11",
"vue-qrcode": "^0.3.5",
"vue-router": "^3.5.1",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/node": "^7.13.13",
"@betahuhn/config": "^1.0.2",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.10",
"@types/debug": "^4.1.5",
"@types/ejs": "^3.0.6",
"@types/express": "^4.17.11",
"@types/express-rate-limit": "^5.1.1",
"@types/nanoid": "^2.1.0",
"@types/node": "^14.14.37",
"@types/signale": "^1.4.1",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"ava": "^3.15.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.23.0",
"mongodb-memory-server": "^6.9.6",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"supertest": "^6.1.3",
"ts-node": "^9.1.1",
"tsc-watch": "^4.2.8",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.4",
"@betahuhn/eslint-config-node": "^0.1.1",
"@vue/cli-plugin-babel": "~4.5.12",
"@vue/cli-plugin-eslint": "~4.5.12",
"@vue/cli-plugin-pwa": "^4.5.12",
"@vue/cli-plugin-router": "^4.5.12",
"@vue/cli-plugin-vuex": "^4.5.12",
"@vue/cli-service": "~4.5.12",
"babel-eslint": "^10.1.0",
"eslint-plugin-vue": "^7.8.0",
"vue-template-compiler": "^2.6.11"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register",
"tsconfig-paths/register"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}