-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
134 lines (134 loc) · 3.54 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "open-golinks",
"version": "2.0.1-alpha.0",
"description": "An web app providing go-links service.",
"main": "src/main.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "nuxt-ts build",
"dev:node": "npx ts-node -r tsconfig-paths/register --project tsconfig.json src/main.ts",
"dev": "nodemon",
"debug": "nodemon",
"nuxt": "nuxt",
"start": "cross-env NODE_ENV=production npx ts-node -r tsconfig-paths/register --project tsconfig.json src/main.ts",
"prod": "npm run build && npm run dev:node",
"heroku-postbuild": "npm run build",
"release": "HUSKY_SKIP_HOOKS=1 standard-version"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/xinbenlv/open-golinks.git"
},
"keywords": [
"golink",
"go-link",
"short",
"url"
],
"author": "Zainan Victor Zhou",
"license": "MIT",
"bugs": {
"url": "https://github.com/xinbenlv/open-golinks/issues"
},
"homepage": "https://github.com/xinbenlv/open-golinks#readme",
"dependencies": {
"@jimp/plugin-print": "^0.14.0",
"@nuxt/types": "^2.16.3",
"@nuxt/typescript-build": "^2.1.0",
"@nuxt/typescript-runtime": "^1.0.0",
"@nuxtjs/axios": "^5.13.6",
"body-parser": "^1.20.2",
"bootstrap": "^4.6.2",
"bootstrap-vue": "^2.23.1",
"canvas": "^2.11.2",
"connect-ensure-login": "^0.1.1",
"cookie-parser": "^1.4.6",
"core-js": "^2.6.12",
"cross-env": "^7.0.3",
"date-fns": "^2.29.3",
"dotenv": "^8.6.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-status-monitor": "^1.3.4",
"google-auth-library": "^6.1.6",
"jimp": "^0.14.0",
"jquery": "^3.6.4",
"log4js": "^6.9.1",
"mongodb": "^3.7.3",
"mongoose": "^5.13.17",
"node-cache": "^5.1.2",
"nuxt": "^2.16.3",
"nuxt-env": "^0.1.0",
"nuxt-property-decorator": "^2.9.1",
"passport": "^0.4.1",
"passport-auth0": "^1.4.3",
"qrcode": "^1.5.1",
"query-string": "^6.14.1",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"request-promise-native": "^1.0.9",
"sharp": "^0.25.4",
"snyk": "^1.1142.0",
"ts-mongoose": "^0.0.21",
"ts-node": "^10.9.1",
"tsc": "^2.0.4",
"tsconfig-paths": "^3.14.2",
"typescript": "^5.0.4",
"universal-analytics": "^0.4.23",
"uuid": "^8.3.2",
"validator": "^13.9.0",
"vee-validate": "^3.4.15",
"vue-clipboard2": "^0.3.3"
},
"engines": {
"node": "18",
"npm": "9"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules",
".nuxt",
".idea"
],
"watch": [
"src",
"static",
"nuxt.config.js",
"package.json",
"vue-shim.d.ts",
"tsconfig.json"
],
"exec": "npm run dev:node",
"ext": "ts"
},
"devDependencies": {
"@commitlint/cli": "9.1.1",
"@commitlint/config-conventional": "9.1.1",
"@types/express": "4.17.7",
"@types/express-serve-static-core": "4.17.8",
"@types/jquery": "3.5.0",
"@types/mongoose": "^5.7.31",
"@types/node": "13.13.14",
"@types/qrcode": "1.3.4",
"@types/universal-analytics": "0.4.4",
"commitizen": "4.1.2",
"cz-conventional-changelog": "3.2.0",
"husky": "4.2.5",
"nodemon": "2.0.4",
"standard-version": "8.0.2",
"webpack-hot-middleware": "2.25.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}