This repository has been archived by the owner on May 9, 2023. It is now read-only.
forked from Tokyo-Metro-Gov/covid19
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
88 lines (88 loc) · 2.74 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "covid19",
"version": "1.0.0",
"description": "浜松市 新型コロナウイルス感染症対策サイト",
"author": "浜松市",
"private": true,
"engines": {
"node": "16.x"
},
"scripts": {
"dev": "cross-env NODE_ENV=development nuxt",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production nuxt start",
"generate:deploy": "cross-env NODE_ENV=production nuxt generate",
"generate:dev": "cross-env NODE_ENV=development nuxt generate",
"generate": "eslint './**/*.{js,ts,vue}' && nuxt generate",
"lint-and-generate": "eslint './**/*.{js,ts,vue}' && nuxt generate",
"lint": "eslint './**/*.{js,ts,vue}'",
"lint:fix": "eslint './**/*.{js,ts,vue}' --fix",
"stylelint": "stylelint '**/*.{css,scss,vue}'",
"stylelint:fix": "stylelint --fix '**/*.{css,scss,vue}'",
"clean-hardsource": "rimraf ./node_modules/.cache/hard-source",
"test": "jest --config jest.config.js ./test/components",
"test:e2e": "jest --config jest.e2e.config.js --runInBand ./test/e2e",
"testServer": "nuxt build && nuxt start --port 3000"
},
"lint-staged": {
"*.{js,ts,css,vue}": [
"eslint --fix"
],
"*.{css,scss,vue}": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxt/types": "2.15.6",
"@nuxtjs/dotenv": "^1.4.0",
"@nuxtjs/pwa": "^3.3.5",
"@types/d3": "^5.7.2",
"@types/mapbox-gl": "^1.8.0",
"chart.js": "2.9.4",
"cross-env": "^5.2.0",
"dayjs": "^1.8.21",
"express": "^4.16.4",
"mapbox-gl": "^1.8.1",
"mapbox-gl-vue": "^2.0.4",
"nuxt": "^2.11.0",
"nuxt-i18n": "6.27.0",
"vue-chartjs": "3.5.1",
"vue-scrollto": "^2.17.1",
"vue-spinner": "^1.0.3"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^2.1.0",
"@mdi/font": "^5.0.45",
"@nuxt/typescript-build": "2.1.0",
"@nuxtjs/eslint-config-typescript": "^1.0.2",
"@nuxtjs/google-analytics": "^2.2.3",
"@nuxtjs/stylelint-module": "^3.2.2",
"@nuxtjs/vuetify": "1.11.3",
"@types/chart.js": "2.9.31",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-jest": "^24.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-tsdoc": "^0.2.3",
"husky": "^4.2.3",
"jest": "^26.0.0",
"jest-puppeteer": "^5.0.3",
"lint-staged": "^10.0.8",
"nodemon": "^1.18.9",
"nuxt-purgecss": "^0.2.1",
"nuxt-svg-loader": "^1.2.0",
"prettier": "^1.19.1",
"puppeteer": "^9.1.1",
"rimraf": "^3.0.2",
"stylelint": "^13.2.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.15.0",
"vue-axe": "^1.0.8",
"vue-jest": "^4.0.0-0"
}
}