-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "Zane-chat-app",
"version": "1.0.0",
"description": "chat app using nuxt",
"author": "Zane Chiang",
"private": false,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"heroku-postbuild": "npm run build",
"test": "jest"
},
"dependencies": {
"@nuxtjs/pwa": "^3.0.0-beta.20",
"cross-env": "^5.2.0",
"express": "^4.16.4",
"nuxt": "^2.12.2",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"socket.io": "^2.3.0",
"vue-socket.io": "^3.0.9",
"vuetify": "^2.2.29"
},
"devDependencies": {
"@mdi/font": "^5.2.45",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"eslint-plugin-vuetify": "^1.0.0-beta.6",
"jest": "^26.0.1",
"nodemon": "^1.18.9",
"prettier": "^2.0.5"
}
}