-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.1 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.1 KB
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
{
"name": "devtalks",
"version": "1.0.0",
"description": "DevTalks Web Site",
"author": "Ignacio Anaya <ignacio.anaya89@gmail.com>",
"private": true,
"dependencies": {
"nuxt": "^1.0.0-rc11",
"vue-disqus": "^3.0.5"
},
"scripts": {
"build": "nuxt build",
"predeploy": "npm run generate",
"deploy": "push-dir --dir=dist --branch=master --cleanup",
"dev": "nuxt",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:fix": "eslint --fix .js,.vue --ignore-path .gitignore .",
"postgenerate": "echo 'devtalksbauru.github.io' > dist/CNAME",
"precommit": "npm run lint",
"start": "nuxt start"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^3.15.0",
"eslint-config-standard": "^6.2.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-html": "^2.0.0",
"eslint-plugin-promise": "^3.4.1",
"eslint-plugin-standard": "^2.0.1",
"node-sass": "^4.5.3",
"pug": "^2.0.0-rc.2",
"push-dir": "^0.4.1",
"sass-loader": "^6.0.6"
},
"engines": {
"node": ">=9",
"npm": ">=6"
}
}