forked from richardeschloss/nuxt-socket-io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·88 lines (88 loc) · 2.75 KB
/
package.json
File metadata and controls
executable file
·88 lines (88 loc) · 2.75 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
{
"name": "nuxt-socket-io",
"version": "1.1.24",
"description": "Socket.io client and server module for Nuxt. Just plug it in and GO",
"author": "Richard Schloss",
"main": "io/module.js",
"types": "io/types.d.ts",
"license": "MIT",
"contributors": [
{
"name": "Richard Schloss"
}
],
"keywords": [
"nuxt",
"socket.io",
"socket.io-client",
"vue",
"vuejs",
"easy"
],
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/richardeschloss/nuxt-socket-io",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env node server/index.js",
"generate:local": "nuxt generate",
"generate:gh-pages": "cross-env nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"test": "cross-env NODE_ENV=test npm run test:specs:cov && npm run test:e2e:cov",
"test:specs": "cross-env TEST=specs ava --config specs.config.js",
"test:specs:cov": "cross-env TEST=specs nyc ava --timeout=10m --config specs.config.js",
"test:specs:watch": "cross-env TEST=specs ava --config specs.config.js --color --watch",
"test:e2e": "cross-env TEST=e2e ava --config e2e.config.js",
"test:e2e:cov": "cross-env TEST=e2e nyc --no-clean ava --timeout=10m --config e2e.config.js",
"test:e2e:watch": "cross-env TEST=e2e ava --config e2e.config.js --color --watch --timeout=10m",
"posttest": "rm io/plugin.compiled.js"
},
"files": [
"components/SocketStatus.vue",
"io/module.js",
"io/plugin.js",
"io/types.d.ts",
"test/utils.js",
"utils"
],
"dependencies": {
"@nuxt/types": "^2.15.5",
"glob": "^7.1.7",
"socket.io": "^4.1.1",
"socket.io-client": "^4.1.1",
"tiny-emitter": "^2.1.0"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/node": "^7.13.13",
"@babel/preset-env": "^7.14.1",
"@nuxtjs/composition-api": "^0.22.4",
"@nuxtjs/eslint-config": "^1.0.1",
"@nuxtjs/eslint-module": "^1.2.0",
"@vue/test-utils": "^1.2.0",
"ava": "^3.15.0",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^3.2.0",
"bootstrap": "^4.6.0",
"bootstrap-vue": "^2.21.2",
"browser-env": "^3.3.0",
"cross-env": "^5.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-nuxt": "^0.5.2",
"eslint-plugin-prettier": "^3.4.0",
"express": "^4.16.4",
"jsdom-global": "^3.0.2",
"nodemon": "^2.0.7",
"nuxt": "^2.15.5",
"nyc": "^15.1.0",
"prettier": "^1.19.1",
"require-extension-hooks": "^0.3.3",
"require-extension-hooks-babel": "^1.0.0",
"require-extension-hooks-vue": "^2.0.0"
}
}