-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.43 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
44
45
46
47
48
49
{
"name": "nuxt-blog",
"version": "1.0.0",
"description": "My awesome nuxt fullstack blog",
"author": "Vladilen Minin",
"private": true,
"scripts": {
"watch": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "git reset --hard origin/master && git pull && npm install --no-optional --no-shrinkwrap --no-package-lock && nuxt build && reboot",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"ssh": "ssh [email protected]"
},
"dependencies": {
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/robots": "^2.4.2",
"@nuxtjs/yandex-metrika": "^1.0.3",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"chart.js": "^2.7.3",
"cookie": "^0.3.1",
"cross-env": "^5.2.0",
"dotenv": "^8.2.0",
"element-ui": "^2.4.11",
"express": "^4.16.4",
"js-cookie": "^2.2.0",
"jsonwebtoken": "^8.4.0",
"jwt-decode": "^2.2.0",
"moment": "^2.24.0",
"mongoose": "^5.4.13",
"multer": "^1.4.1",
"nuxt": "^2.4.0",
"nuxt-env": "^0.1.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"swiper": "^5.2.1",
"typograf": "^6.10.0",
"v-scroll-lock": "^1.1.0",
"vue-chartjs": "^3.4.0",
"vue-moment": "^4.0.0",
"vue-showdown": "^2.4.1"
},
"devDependencies": {
"@nuxtjs/style-resources": "^1.0.0",
"node-sass": "^4.11.0",
"nodemon": "^1.18.9",
"sass-loader": "^7.1.0"
}
}