-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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": "nuxt-node",
"version": "1.0.0",
"description": "My polished Nuxt.js project",
"author": "Khoa Pham",
"private": true,
"scripts": {
"server": "nodemon api/index.js",
"seeder": "node api/seeder/index.js",
"client": "nuxt",
"nuxt_generate": "nuxt generate"
},
"dependencies": {
"@nuxtjs/axios": "^5.0.0",
"bcrypt": "^3.0.2",
"body-parser": "^1.18.3",
"cross-env": "^5.2.0",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"express-validator": "^5.3.0",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.3.13",
"mongoose-seed": "^0.6.0",
"nuxt": "^2.0.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"slug": "^0.9.2",
"vue-quill-editor": "^3.0.6",
"vuelidate": "^0.7.4",
"vuetify": "^1.2.4",
"winston": "^3.2.1"
},
"devDependencies": {
"nodemon": "^1.11.0",
"babel-eslint": "^8.2.1",
"eslint": "^5.0.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-vue": "^4.0.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2"
}
}