-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
66 lines (66 loc) · 1.94 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
{
"name": "pycon.jp.2020",
"version": "1.0.0",
"description": "PyCon JP 2020 Web Site",
"author": "Koji Ishimoto",
"private": true,
"scripts": {
"dev": "nuxt-ts",
"build": "nuxt-ts build",
"generate": "nuxt-ts generate",
"start": "nuxt-ts start",
"lint": "eslint --fix --ext .js,.ts,.vue --ignore-path .gitignore .",
"test": "jest"
},
"lint-staged": {
"*.{js,ts,vue}": "yarn lint",
"*.{css,vue}": "stylelint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/vue-fontawesome": "^0.1.10",
"@nuxt/content": "^1.6.0",
"@nuxt/typescript-runtime": "^0.4.10",
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/markdownit": "^1.2.10",
"@nuxtjs/proxy": "^2.0.0",
"@nuxtjs/pwa": "^3.0.0-0",
"@nuxtjs/sitemap": "^2.2.0",
"axios": "^0.19.2",
"body-scroll-lock": "^3.0.3",
"date-fns": "^2.14.0",
"node-sass": "^4.14.1",
"nuxt": "^2.12.2",
"nuxt-font-loader-strategy": "^1.0.0",
"nuxt-fontawesome": "^0.4.0",
"nuxt-i18n": "^6.8.1",
"nuxt-webfontloader": "^1.1.0",
"sass-loader": "^9.0.3",
"vue-svg-transition": "^0.2.1",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@nuxt/typescript-build": "^1.0.3",
"@nuxtjs/eslint-config-typescript": "^2.0.0",
"@nuxtjs/eslint-module": "^2.0.0",
"@nuxtjs/stylelint-module": "^4.0.0",
"@nuxtjs/tailwindcss": "^2.0.0",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-nuxt": ">=1.0.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.0.0",
"jest": "^24.1.0",
"lint-staged": "^10.0.0",
"prettier": "^2.0.5",
"stylelint": "^13.5.0",
"ts-jest": "^25.0.0",
"vue-jest": "^4.0.0-0"
}
}