forked from codeforsapporo/covid19
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.23 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "covid19",
"version": "1.0.0",
"description": "北海道 新型コロナウイルスまとめサイト",
"author": "",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nuxt-ts",
"build": "nuxt-ts build",
"start": "cross-env NODE_ENV=development nuxt-ts start",
"generate": "cross-env NODE_ENV=development nuxt-ts generate",
"generate:production": "cross-env NODE_ENV=production nuxt-ts generate",
"test": "echo 'skip tests (there is no test)'",
"lint": "eslint './**/*.{js,ts,vue}'",
"lint:fix": "eslint './**/*.{js,ts,vue}' --fix",
"stylelint": "stylelint '**/*.{css,scss,vue}'",
"stylelint:fix": "stylelint --fix '**/*.{css,scss,vue}'"
},
"lint-staged": {
"*.{js,ts,css,vue}": [
"eslint --fix"
],
"*.{css,scss,vue}": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@mdi/font-build": "^1.8.4",
"@nuxt/typescript-runtime": "^0.4.2",
"@nuxtjs/axios": "^5.9.7",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/moment": "^1.6.0",
"@nuxtjs/pwa": "^3.0.0-0",
"apexcharts": "^3.18.1",
"@nuxtjs/sitemap": "^2.2.0",
"chart.js": "^2.9.3",
"cross-env": "^7.0.2",
"express": "^4.16.4",
"nuxt": "^2.12.2",
"nuxt-i18n": "6.8.1",
"vue-apexcharts": "^1.5.3",
"vue-chartjs": "^3.5.0",
"vue-property-decorator": "^8.4.1",
"vue-spinner": "^1.0.3"
},
"devDependencies": {
"@nuxt/typescript-build": "^0.6.2",
"@nuxtjs/eslint-config-typescript": "^1.0.2",
"@nuxtjs/google-analytics": "^2.2.3",
"@nuxtjs/stylelint-module": "^3.2.2",
"@nuxtjs/vuetify": "^1.11.0",
"@types/chart.js": "^2.9.18",
"@vue/test-utils": "^1.0.0-beta.32",
"babel-jest": "^25.2.6",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-tsdoc": "^0.2.4",
"husky": "^4.2.3",
"jest": "^25.2.7",
"lint-staged": "^10.1.2",
"nodemon": "^2.0.2",
"nuxt-svg-loader": "^1.2.0",
"prettier": "^1.19.1",
"stylelint": "^13.3.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.16.0",
"vue-jest": "^4.0.0-beta.2"
}
}