forked from binbytes/nuxt-chat-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.22 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
{
"name": "nuxt-chat-app",
"version": "1.0.0",
"description": "An web chat application built using nuxtjs",
"author": "Nikunj Kanetiya <[email protected]>",
"dependencies": {
"@nuxtjs/auth": "^4.1.0",
"@nuxtjs/axios": "^4.4.0",
"@nuxtjs/dotenv": "^1.1.1",
"@nuxtjs/pwa": "^2.0.8",
"moment": "^2.19.1",
"nuxt": "^1.4.0",
"socket.io-client": "^2.0.3",
"vee-validate": "^2.0.6",
"vue-avatar-component": "^1.2.4",
"vue-server-renderer": "^2.5.6",
"vue-template-compiler": "^2.5.6",
"vuebar": "^0.0.17"
},
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"start": "nuxt start",
"dev-spa": "nuxt dev --spa",
"build-spa": "nuxt build --spa",
"start-spa": "nuxt start --spa",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^3.15.0",
"eslint-config-standard": "^6.2.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-html": "^2.0.0",
"eslint-plugin-promise": "^3.4.1",
"eslint-plugin-standard": "^2.0.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"tailwindcss": "^0.1.5"
}
}