forked from gustavoquinalha/conf2019
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
{
"name": "conf-2018",
"version": "1.0.0",
"description": "Dev Paraná Conference 2018",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start-nuxt": "nuxt start",
"start": "node server.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"deploy": "push-dir --dir=dist --branch=gh-pages --cleanup",
"heroku": "npm run build && npm run generate",
"postinstall": "if [ $BUILD ]; then npm run heroku; fi"
},
"engines": {
"node": "8.x"
},
"main": "index.js",
"author": "Leonardo Elias <[email protected]>",
"contributors": [
{
"name": "Gustavo Quinalha",
"email": "[email protected]"
}
],
"dependencies": {
"@xkeshi/vue-countdown": "^0.6.0",
"alerts-css": "^1.0.2",
"express": "^4.16.3",
"nuxt": "^1.0.0",
"nuxt-facebook-pixel-module": "^1.0.0",
"push-dir": "^0.4.1",
"vee-validate": "^2.0.9"
},
"devDependencies": {
"@gustavoquinalha/buttons-css": "^1.0.1",
"babel-eslint": "^8.2.1",
"cross-env": "^5.2.0",
"eslint": "^4.15.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-vue": "^4.2.2",
"node-sass": "^4.7.2",
"sass-loader": "^6.0.6",
"the-grid-flexbox": "^2.0.1"
}
}