-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.22 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
{
"name": "example-nodejs-frontend",
"version": "0.1.0",
"description": "Node.js based Magic3 frontend example",
"author": "Naoki Hirata",
"license": "MIT",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon --inspect-brk=9229 server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate"
},
"dependencies": {
"@nuxtjs/axios": "^5.4.1",
"app-root-path": "^2.2.0",
"body-parser": "^1.18.3",
"cross-env": "^5.2.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"express-validator": "^5.3.1",
"is-empty": "^1.2.0",
"moment": "^2.24.0",
"multer": "^1.4.1",
"mysql2": "^1.6.5",
"nuxt": "^2.5.1",
"striptags": "^3.1.1",
"truncate": "^2.0.1",
"vue-infinite-loading": "^2.4.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@nuxtjs/vuetify": "^0.5.5",
"eslint": "^5.15.3",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"nodemon": "^1.18.10"
}
}