-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
38 lines (38 loc) · 1.14 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
{
"name": "nuxt-auth-routes-on-express",
"version": "1.0.0",
"description": "The Nuxt.js auth-routes example ported to a create-nuxt-app fired up express, axios module, and vuetify app.",
"author": "victorkane",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/victorkane/nuxt-auth-routes-on-express"
},
"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",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint"
},
"dependencies": {
"@nuxtjs/axios": "^5.0.1",
"@nuxtjs/dotenv": "^1.1.0",
"body-parser": "^1.18.2",
"express": "^4.15.3",
"express-session": "^1.15.6",
"nuxt": "^1.0.0",
"vuetify": "^0.17.3"
},
"devDependencies": {
"cross-env": "^5.0.1",
"babel-eslint": "^8.2.1",
"eslint": "^4.15.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-vue": "^4.0.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"nodemon": "^1.11.0"
}
}