-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.6 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
{
"name": "nuxt-express",
"version": "1.0.0",
"description": "Reboot Final Project Template",
"author": "Fer Martin",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon -r esm server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node -r esm server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"heroku-postbuild": "npm run build",
"dev-debug": "node --inspect node_modules/.bin/nuxt"
},
"lint-staged": {
"*.{js,vue}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/pwa": "^3.0.0-0",
"bcrypt": "^3.0.6",
"cors": "^2.8.4",
"cross-env": "^5.2.0",
"esm": "^3.2.25",
"express": "^4.16.4",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.3",
"morgan": "^1.9.1",
"nuxt": "^2.10.2",
"vuex-persistedstate": "^2.7.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^1.0.1",
"@nuxtjs/eslint-module": "^1.0.0",
"@nuxtjs/vuetify": "^1.0.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.0.1",
"husky": "^2.6.0",
"lint-staged": "^8.2.1",
"nodemon": "^1.18.9",
"prettier": "^1.19.1"
}
}