forked from Tokyo-Metro-Gov/covid19
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.61 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
{
"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=production nuxt-ts start",
"generate": "nuxt-ts generate",
"test": "echo 'skip tests (there is no test)'",
"lint": "eslint './**/*.{js,ts,vue}' --fix"
},
"lint-staged": {
"*.{js,ts,scss,css,vue}": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxt/typescript-runtime": "^0.3.10",
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/dotenv": "^1.4.0",
"@nuxtjs/moment": "^1.6.0",
"@nuxtjs/pwa": "^3.0.0-0",
"chart.js": "^2.9.3",
"cross-env": "^5.2.0",
"express": "^4.16.4",
"nuxt": "^2.0.0",
"nuxt-i18n": "^6.6.0",
"vue-chartjs": "^3.5.0",
"vue-property-decorator": "^8.4.0",
"vue-spinner": "^1.0.3"
},
"devDependencies": {
"@nuxt/typescript-build": "^0.5.8",
"@nuxtjs/eslint-config-typescript": "^1.0.2",
"@nuxtjs/google-analytics": "^2.2.3",
"@nuxtjs/vuetify": "^1.0.0",
"@types/chart.js": "^2.9.14",
"@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",
"husky": "^4.2.3",
"jest": "^24.1.0",
"lint-staged": "^10.0.8",
"nodemon": "^1.18.9",
"nuxt-svg-loader": "^1.2.0",
"prettier": "^1.19.1",
"vue-jest": "^4.0.0-0"
}
}