forked from phillysnow/nuxt-language-switcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 838 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
{
"name": "language-switcher-nuxt",
"version": "1.0.0",
"description": "A website with a language switcher menu built for Nuxt and Prismic",
"author": "Phil Snow",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"heroku-postbuild": "npm run build"
},
"dependencies": {
"cookies": "^0.7.3",
"cross-env": "^5.2.0",
"express": "^4.16.4",
"nuxt": "^2.4.0",
"prismic-dom": "^2.1.0",
"prismic-javascript": "^2.0.1",
"prismic-vue": "git+https://github.com/prismicio/prismic-vue.git#nuxt"
},
"devDependencies": {
"node-sass": "^4.11.0",
"nodemon": "^1.18.9",
"sass-loader": "^7.1.0"
}
}