-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.88 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
50
51
52
53
54
55
56
57
{
"name": "werobot.web",
"version": "1.0.0",
"description": "My sublime Nuxt.js project",
"author": "lefuturiste <contact@lefuturiste.fr>",
"private": true,
"scripts": {
"dev": "cross-env API_URL=http://localhost:3000/api NODE_ENV=development nodemon server/index.js --watch server",
"build": "cross-env API_ENDPOINT=https://api.werobot.fr API_URL=https://werobot.fr/api nuxt build",
"start": "cross-env API_ENDPOINT=https://api.werobot.fr API_URL=https://werobot.fr/api NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"locales": "node match-locales.js",
"deploy": "git pull origin master && npm run build && pm2 restart all"
},
"dependencies": {
"@nuxtjs/axios": "^5.3.3",
"@nuxtjs/moment": "^1.0.0",
"@nuxtjs/proxy": "^1.2.4",
"cookie-parser": "^1.4.3",
"cross-env": "^7.0.3",
"express": "^4.16.3",
"http-proxy-middleware": "^0.19.0",
"marked": "^0.5.1",
"moment": "^2.22.2",
"nuxt": "^2.0.0",
"ol": "^6.6.1",
"vue-burger-menu": "^1.0.8",
"vue-cookie": "^1.1.4",
"vue-directive-tooltip": "^1.5.0",
"vue-gallery-slideshow": "^1.2.4",
"vue-i18n": "^8.2.1",
"vue-lazyload": "^1.2.6",
"vue-ls": "^3.2.0",
"vue-moment": "^4.0.0",
"vue-recaptcha": "^1.1.1",
"vue-transition-css": "^1.0.5"
},
"devDependencies": {
"@nuxtjs/markdownit-loader": "^1.1.1",
"all-object-keys": "^1.1.0",
"autoprefixer": "^8.6.4",
"babel-eslint": "^8.2.1",
"eslint": "^5.0.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-vue": "^4.0.0",
"html-loader": "^0.5.5",
"markdown-loader": "^4.0.0",
"markdownit-loader": "^2.0.0",
"nodemon": "^1.11.0",
"raw-loader": "^0.5.1",
"sass": "^1.51.0",
"sass-loader": "10",
"tailwindcss": "~0.6.6"
}
}