forked from Tokyo-Metro-Gov/covid19
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
73 lines (73 loc) · 2.18 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
{
"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.6",
"@nuxt/typescript-runtime": "^2.0.0",
"@nuxtjs/pwa": "^3.1.0",
"@nuxtjs/sitemap": "^2.4.0",
"chart.js": "^2.9.3",
"cross-env": "^7.0.2",
"dayjs": "^1.9.1",
"express": "^4.17.1",
"nuxt": "^2.14.6",
"nuxt-i18n": "6.15.1",
"nuxt-webfontloader": "^1.1.0",
"vue-chartjs": "^3.5.1",
"vue-class-component": "^7.2.6",
"vue-property-decorator": "^9.0.2",
"vue-spinner": "^1.0.4"
},
"devDependencies": {
"@nuxt/types": "^2.14.6",
"@nuxt/typescript-build": "^2.0.3",
"@nuxtjs/eslint-config-typescript": "^3.0.0",
"@nuxtjs/google-analytics": "^2.4.0",
"@nuxtjs/stylelint-module": "^4.0.0",
"@nuxtjs/vuetify": "^1.11.2",
"@types/chart.js": "^2.9.25",
"@vue/test-utils": "^1.1.0",
"babel-jest": "^26.5.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-tsdoc": "^0.2.4",
"husky": "^4.3.0",
"jest": "^26.5.2",
"lint-staged": "^10.4.0",
"nodemon": "^2.0.4",
"nuxt-svg-loader": "^1.2.0",
"prettier": "^1.19.1",
"stylelint": "^13.7.2",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.18.0",
"vue-jest": "^3.0.7"
}
}