-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
154 lines (154 loc) · 4.53 KB
/
package.json
File metadata and controls
154 lines (154 loc) · 4.53 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
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
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "human-connection-webapp",
"description": "Human-Connection WebApp",
"version": "0.5.0",
"homepage": "https://human-connection.org",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Human-Connection/WebApp.git"
},
"author": {
"name": "Human Connection gGmbH",
"email": "developer@human-connection.org"
},
"bugs": {
"url": "https://github.com/Human-Connection/WebApp/issues",
"email": "support@human-connection.org"
},
"keywords": [
"human-connection",
"social network",
"frontend",
"nuxtjs"
],
"engines": {
"node": ">= 8.9.0",
"yarn": ">= 1.3.0"
},
"scripts": {
"ci": "yarn run eslint && yarn run test",
"clean": "rm -rf build/*",
"dev": "backpack dev",
"dev:debug": "backpack dev --inspect=0.0.0.0:9229",
"envsub": "envsub .env.template .env",
"build": "nuxt build && backpack build",
"start": "node build/main.js",
"start:pm2": "pm2 start node build/main.js -n frontend -i 2 --attach",
"deploy": "yarn run envsub && yarn run build && yarn run start:pm2",
"precommit": "yarn eslint",
"eslint": "eslint --ext .js,.vue .",
"styleguide": "vue-styleguidist server",
"styleguide:build": "vue-styleguidist build",
"test": "ava",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"dependencies": {
"@feathersjs/authentication-client": "^1.0.2",
"@feathersjs/client": "^3.5.3",
"@feathersjs/feathers": "^3.1.7",
"@feathersjs/socketio": "^3.2.2",
"@nuxtjs/dotenv": "^1.1.1",
"@nuxtjs/pwa": "~2.0.5",
"axios": "^0.18.0",
"babel-eslint": "~8.2.5",
"babel-preset-vue-app": "~2.0.0",
"body-parser": "~1.18.3",
"body-scroll-lock": "^2.4.2",
"bricks.js": "~1.8.0",
"buefy": "~0.6.5",
"bulma": "~0.7.1",
"bulma-steps-component": "^0.5.3",
"cheerio": "^1.0.0-rc.2",
"cookie-parser": "~1.4.3",
"cookie-universal-nuxt": "~2.0.3",
"cross-env": "~5.2.0",
"css-loader": "~0.28.10",
"csv-parse": "~2.4.0",
"emitter-js": "~2.0.1",
"envsub": "~3.1.0",
"express": "~4.16.2",
"express-healthcheck": "~0.1.0",
"express-locale": "~1.0.5",
"express-session": "~1.15.6",
"font-awesome": "~4.7.0",
"helmet": "^3.12.1",
"i18n-iso-countries": "^3.6.2",
"jquery": "~3.3.1",
"js-base64": "^2.4.5",
"js-cookie": "~2.2.0",
"linkifyjs": "^2.1.6",
"lodash": "~4.17.10",
"mapbox-gl": "~0.45.0",
"moment": "^2.22.2",
"nuxt": "~1.4.0",
"parchment": "^1.1.4",
"quill": "^1.3.6",
"quill-delta": "^3.6.2",
"raven": "^2.6.3",
"raven-js": "^3.26.4",
"redirect-ssl": "~1.3.0",
"request": "~2.87.0",
"sanitize-html": "^1.18.2",
"socket.io-client": "~2.1.1",
"uikit": "^3.0.0-rc.2",
"v2-table": "1.0.1",
"valid-url": "~1.0.9",
"vue": "~2.5.16",
"vue-affix": "^0.2.4",
"vue-click-outside": "^1.0.7",
"vue-clip": "git+https://github.com/alexsasharegan/vue-clip.git#develop",
"vue-clipboard2": "^0.2.0",
"vue-count-to": "~1.0.13",
"vue-in-viewport-mixin": "~1.0.4",
"vue-infinite-loading": "~2.3.1",
"vue-loader": "~14.1.1",
"vue-places": "^1.1.0",
"vue-quill-editor": "~3.0.5",
"vue-scrollto": "~2.11.0",
"vue-server-renderer": "~2.5.16",
"vue-styleguidist": "~1.7.7",
"vue-template-compiler": "~2.5.16",
"vue-text-glitch": "^1.0.1",
"vuelidate": "~0.6.1",
"vuex-i18n": "~1.10.5",
"webpack": "^3.0.0",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@nuxtjs/webpackmonitor": "~0.1.0",
"@vue/test-utils": "^1.0.0-beta.20",
"ava": "~0.25.0",
"backpack-core": "~0.7.0",
"browser-env": "~3.2.4",
"codecov": "~3.0.4",
"eslint": "~4.19.1",
"eslint-config-standard": "~11.0.0-beta.0",
"eslint-loader": "~2.0.0",
"eslint-plugin-html": "~4.0.5",
"eslint-plugin-import": "~2.12.0",
"eslint-plugin-node": "~6.0.1",
"eslint-plugin-promise": "~3.7.0",
"eslint-plugin-standard": "~3.1.0",
"eslint-plugin-vue": "^4.5.0",
"istanbul": "~0.4.5",
"jsdom": "~11.10.0",
"less": "~2.7.3",
"less-loader": "^4.1.0",
"node-sass": "~4.9.0",
"require-extension-hooks": "~0.3.2",
"require-extension-hooks-babel": "~0.1.1",
"require-extension-hooks-vue": "~1.0.0",
"sass-loader": "~6.0.7",
"source-map-support": "~0.5.6",
"vue-docgen-api": "^2.3.11",
"vue-style-loader": "~4.1.0"
},
"ava": {
"require": [
"./test/helpers/setup.js"
]
}
}