-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
33 lines (33 loc) · 904 Bytes
/
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
{
"name": "nuxt-full-stack-template",
"version": "1.0.0",
"description": "Nuxt full stack template for creating web app easily.",
"author": "gyarasu <dev.yoshitsugu@gmail.com>",
"private": true,
"scripts": {
"dev": "NODE_ENV=development nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint"
},
"dependencies": {
"@nuxtjs/axios": "5.6.0",
"body-parser": "1.19.0",
"config": "3.2.2",
"express": "4.17.1",
"express-mysql-session": "2.1.0",
"express-session": "1.16.2",
"log4js": "5.1.0",
"mysql": "2.17.1",
"nuxt": "2.9.2"
},
"devDependencies": {
"babel-eslint": "10.0.3",
"eslint": "6.3.0",
"eslint-friendly-formatter": "4.0.1",
"eslint-loader": "2.2.1",
"eslint-plugin-vue": "5.2.3"
}
}