-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.02 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
{
"name": "jwt-front",
"version": "1.0.0",
"description": "JWT(JSON Web Tokens) Certification Authorization Front Nuxt",
"author": "daisuke.takayama",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development HOST=0.0.0.0 PORT=3333 nuxt",
"dev:local": "cross-env NODE_ENV=local HOST=0.0.0.0 PORT=3000 nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate"
},
"dependencies": {
"@nuxtjs/auth": "^4.5.3",
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/proxy": "^1.3.1",
"bootstrap": "^4.1.3",
"bootstrap-vue": "^2.0.0-rc.11",
"cross-env": "^5.2.0",
"dotprop": "^1.2.0",
"nuxt": "^2.4.0"
},
"devDependencies": {
"nodemon": "^1.18.9",
"babel-eslint": "^10.0.1",
"body-parser": "^1.18.3",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-vue": "^4.7.1",
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"jsonwebtoken": "^8.5.1"
}
}