-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 806 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 806 Bytes
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
{
"name": "bitcoin-rates",
"version": "1.0.0",
"description": "Nuxt practice",
"author": "evgenii-code",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"build:gh-pages": "DEPLOY_ENV=GH_PAGES nuxt build",
"generate:gh-pages": "DEPLOY_ENV=GH_PAGES nuxt generate",
"start": "nuxt start",
"generate": "nuxt generate"
},
"dependencies": {
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/pwa": "^3.0.0-0",
"chart.js": "^2.9.3",
"nuxt": "^2.0.0",
"vue-chartjs": "^3.5.0"
},
"devDependencies": {
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.5",
"prettier": "^1.19.1"
},
"husky": {
"hooks": {
"pre-commit": "prettier --write './**/*.{js,vue}' && git add ."
}
}
}