-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
97 lines (97 loc) · 3.31 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
89
90
91
92
93
94
95
96
97
{
"name": "covid19-ibaraki",
"version": "1.0.0",
"description": "茨城県 新型コロナウイルス感染症対策サイト",
"author": "Asa",
"private": true,
"engines": {
"node": ">=18.14.2"
},
"scripts": {
"dev": "cross-env NODE_ENV=development GENERATE_ENV=development nuxt",
"dev-no-axe": "cross-env NODE_ENV=dev-no-axe GENERATE_ENV=development nuxt",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production nuxt start",
"generate:deploy": "cross-env GENERATE_ENV=production NODE_OPTIONS=--max_old_space_size=4096 nuxt generate --fail-on-page-error",
"generate:dev": "cross-env GENERATE_ENV=development NODE_OPTIONS=--max_old_space_size=4096 nuxt generate --fail-on-page-error",
"generate": "eslint \"./**/*.{js,ts,vue}\" && nuxt 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}\"",
"clean-hardsource": "rimraf ./node_modules/.cache/hard-source",
"generate-data-converters": "ts-node --compiler-options='{\"module\":\"commonjs\"}' ./tool/generateDataConverters.ts",
"prepare": "husky install",
"danger:ci": "danger ci"
},
"lint-staged": {
"*.{js,ts,css,vue}": [
"eslint --fix"
],
"*.{css,scss,vue}": "stylelint",
"*": "prettier --ignore-unknown --write"
},
"resolutions": {
"@nuxtjs/vuetify/**/sass": "1.32.12"
},
"dependencies": {
"@nuxt/types": "^2.16.2",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/gtm": "^2.4.0",
"@nuxtjs/i18n": "^7.3.1",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/sitemap": "^2.4.0",
"@nuxtjs/svg": "^0.4.0",
"axe-core": "^4.6.3",
"chart.js": "^2.9.4",
"cross-env": "^7.0.3",
"dayjs": "^1.11.7",
"nuxt": "^2.16.2",
"vue": "^2.7.14",
"vue-chartjs": "^3.5.1",
"vue-meta": "^2.4.0",
"vue-scrollto": "^2.20.0",
"vue-spinner": "^1.0.4"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/runtime-corejs3": "^7.21.0",
"@mdi/js": "^7.2.96",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config": "^12.0.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/google-analytics": "^2.4.0",
"@nuxtjs/stylelint-module": "^4.2.1",
"@nuxtjs/vuetify": "^1.12.3",
"@types/chart.js": "^2.9.37",
"@types/lodash": "^4.14.192",
"@types/node": "^18.14.6",
"core-js": "^3.29.0",
"danger": "^11.2.4",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-vuejs-accessibility": "^2.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"lodash": "^4.17.21",
"nuxt-property-decorator": "^2.9.1",
"nuxt-purgecss": "^1.0.0",
"nuxt-webfontloader": "^1.1.0",
"postcss": "^8.4.31",
"postcss-html": "^1.5.0",
"prettier": "^2.8.4",
"quicktype": "^23.0.11",
"stylelint": "^15.10.1",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "^6.1.0",
"ts-loader": "^8.4.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vue-axe": "^2.4.4",
"vue-template-compiler": "^2.7.14"
}
}