-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·36 lines (36 loc) · 1.05 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
{
"name": "git-history",
"version": "1.0.0",
"description": "Quickly browse the history of a file from public github repository",
"author": "Elevista",
"scripts": {
"start": "nuxt",
"gh-pages": "nuxt generate -c nuxt.gh-pages.config.js && push-dir --dir=dist --branch=gh-pages --cleanup",
"lint": "eslint --format ./node_modules/eslint-friendly-formatter --ext .js,.vue .",
"lint:fix": "eslint --format ./node_modules/eslint-friendly-formatter --ext .js,.vue . --fix"
},
"dependencies": {
"axios": "^0.18.1",
"diff": "^4.0.1",
"js-base64": "^2.5.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"netlify-auth-providers": "^1.0.0-alpha5",
"normalize.css": "^8.0.1",
"nuxt": "^2.6.1",
"prismjs": "^1.16.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-vue": "^5.2.2",
"node-sass": "^4.12.0",
"push-dir": "^0.4.1",
"sass-loader": "^7.1.0",
"standard": "^12.0.1"
},
"eslintIgnore": [
"node_modules",
"static"
]
}