-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.35 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
{
"name": "vitrino",
"version": "1.0.0",
"description": "Sharing Community App",
"author": "Daniel Bischoff <[email protected]>",
"private": true,
"engines": {
"node": "9.6.*",
"npm": "5.5.*"
},
"scripts": {
"dev": "cross-env NODE_ENV=development node server/index.js",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production npm run node-web",
"heroku-postbuild": "npm run build",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint"
},
"dependencies": {
"cross-env": "^5.1.3",
"express": "^4.16.1",
"firebase": "^4.9.1",
"helmet": "^3.11.0",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"nuxt": "1.3",
"vee-validate": "^2.0.4",
"vue-i18n": "^7.4.2",
"vue-no-ssr": "^0.2.2",
"vuefire": "^2.0.0-alpha.6"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"eslint": "^4.18.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^4.0.2",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1"
}
}