-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
142 lines (142 loc) · 4.04 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
135
136
137
138
139
140
141
142
{
"name": "notify",
"version": "3.4.1",
"description": "A simple server to manage notifications feeds for our users. Notifications are stored and pushed to various channels.",
"main": "index.js",
"scripts": {
"dev-deps": "docker compose --profile dev up -d",
"stop-dev-deps": "docker compose --profile dev stop",
"dev-server": "NODE_ENV=development nodemon server",
"dev-client": "NODE_ENV=development nuxt",
"build": "nuxt build",
"lint": "eslint --ext js,vue --ignore-path .gitignore .",
"lint-fix": "eslint --fix --ext js,vue --ignore-path .gitignore .",
"test-deps": "docker compose --profile test up -d --wait --quiet-pull",
"test": "NODE_ENV=test mocha --exit --timeout 10000",
"quality": "npm run test-deps && npm run lint && npm run test && npm audit --omit=dev --audit-level=critical",
"prepare": "husky install",
"postinstall": "patch-package"
},
"engines": {
"node": "v20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koumoul-dev/notify.git"
},
"keywords": [
"notification",
"push",
"publish/subscribe"
],
"author": "Alban Mouton <[email protected]>",
"license": "AGPL-3.0-only",
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"plugins": [
"no-only-tests"
],
"extends": [
"plugin:vue/essential",
"eslint:recommended",
"standard",
"plugin:vue/recommended"
],
"rules": {
"vue/no-v-html": "off",
"vue/multi-word-component-names": "off",
"node/no-deprecated-api": "off",
"vue/no-mutating-props": "off",
"vue/require-prop-types": "off",
"vue/no-useless-template-attributes": "off"
}
},
"bugs": {
"url": "https://github.com/koumoul-dev/notify/issues"
},
"homepage": "https://github.com/koumoul-dev/notify#readme",
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^17.8.1",
"@data-fair/sd-vue": "2.6.1",
"@koumoul/vjsf": "^2.11.3",
"@mdi/font": "^6.6.96",
"@nuxt/types": "2.17",
"@nuxtjs/google-fonts": "^1.3.0",
"@nuxtjs/vuetify": "^1.12.3",
"@types/debug": "^4.1.12",
"babel-eslint": "^10.0.3",
"clean-modules": "^2.0.6",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-vue": "^8.5.0",
"http-proxy-middleware": "^1.0.6",
"husky": "^8.0.3",
"iframe-resizer": "^4.2.11",
"mocha": "^6.2.3",
"nodemon": "^2",
"nuxt": "^2.17.4",
"patch-package": "^8.0.0",
"reconnecting-websocket": "^4.2.0",
"typescript": "^5.4.5",
"vue-moment": "^4.1.0",
"vuetify": "^2.6.16"
},
"dependencies": {
"@data-fair/lib": "^0.43.0",
"@data-fair/sd-express": "1.4.3",
"@koumoul/nuxt-config-inject": "^0.4.12",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/i18n": "^7.3.1",
"accept-language-parser": "^1.5.0",
"ajv": "^8.12.0",
"body-parser": "^1.19.2",
"cacheable-lookup": "^6.0.4",
"config": "^3.2.6",
"cookie-parser": "^1.4.7",
"cookie-universal-nuxt": "^2.0.19",
"cors": "^2.8.5",
"dayjs": "^1.10.8",
"event-to-promise": "^0.8.0",
"express": "^4.17.3",
"flat": "^5.0.2",
"fs-extra": "^10.0.1",
"http-terminator": "^3.2.0",
"i18n": "^0.13.4",
"js-cookie": "^3.0.5",
"moment": "^2.24.0",
"mongodb": "^5.8.1",
"nanoid": "^3.3.8",
"node-pushnotifications": "^3",
"nuxt-start": "^2.15.8",
"prom-client": "^14.0.1",
"semver-extract": "^1.1.1",
"url-template": "^2.0.8",
"useragent": "^2.3.0",
"ws": "^7.5.10"
},
"overrides": {
"node-gcm": {
"axios": "^1.7"
},
"@nuxtjs/axios": {
"axios": "0"
},
"@data-fair/lib": {
"vue": "2.7.16",
"vuetify": "$vuetify",
"vue-i18n": "8.28.2",
"vue-router": "3.6.5",
"mongodb": "$mongodb",
"prom-client": "$prom-client",
"ws": "$ws"
}
}
}