-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
93 lines (93 loc) · 2.95 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
{
"name": "vuefes-2019",
"version": "1.0.0",
"description": "Vue Fes Japan 2019",
"author": "INOUE Takuya <inouetakuya5@gmail.com>",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"imagemin": "imagemin --plugin=mozjpeg --plugin=gifsicle --plugin=pngquant --plugin=optipng --plugin=svgo",
"lint": "yarn eslint && yarn stylelint",
"lint:fix": "yarn eslint:fix && yarn stylelint:fix",
"eslint": "eslint --ext .ts,.js,.vue --ignore-path .gitignore .",
"eslint:fix": "yarn eslint --fix",
"stylelint": "stylelint 'src/**/*.vue' 'src/**/*.scss'",
"stylelint:fix": "yarn stylelint --fix",
"test": "jest --verbose",
"test:ci": "jest --ci --coverage --no-cache --maxWorkers=2"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && ./bin/resize-images && ./bin/imagemin"
}
},
"dependencies": {
"@fortawesome/free-brands-svg-icons": "^5.8.1",
"@nuxtjs/dotenv": "^1.3.0",
"@nuxtjs/google-analytics": "^2.2.0",
"@nuxtjs/pwa": "^3.0.0-beta.12",
"contentful": "^7.6.0",
"cross-env": "^5.2.0",
"dayjs": "^1.8.16",
"lodash.clonedeep": "^4.5.0",
"marked": "^0.8.0",
"normalize.css": "^8.0.1",
"nuxt": "^2.8.1",
"nuxt-fontawesome": "^0.4.0",
"nuxt-property-decorator": "^2.1.3",
"ts-node": "^8.0.3",
"vue-lazyload": "^1.2.6"
},
"devDependencies": {
"@nuxt/typescript": "^2.6.1",
"@nuxtjs/eslint-config": "^1.0.1",
"@nuxtjs/style-resources": "^0.1.2",
"@types/gsap": "^1.20.2",
"@types/jest": "^24.0.11",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"@typescript-eslint/parser": "^1.12.0",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.1.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": ">=12.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.18.1",
"eslint-plugin-jest": ">=21.24.1",
"eslint-plugin-node": ">=7.0.1",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": ">=4.0.1",
"eslint-plugin-standard": ">=4.0.0",
"eslint-plugin-vue": "^5.0.0",
"fetch-mock": "^7.3.3",
"flush-promises": "^1.0.2",
"gsap": "^3.6.0",
"husky": "^3.0.1",
"imagemin-cli": "^5.0.0",
"imagemin-gifsicle": "^6.0.1",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-optipng": "^7.0.0",
"imagemin-pngquant": "^8.0.0",
"imagemin-svgo": "^7.0.0",
"jest": "^24.1.0",
"node-sass": "^4.11.0",
"nodemon": "^1.18.9",
"prettier": "^1.18.2",
"sass-loader": "^7.1.0",
"sharp": "^0.23.0",
"sharp-cli": "^1.10.0",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-scss": "^3.5.4",
"stylelint-webpack-plugin": "^0.10.5",
"ts-jest": "^24.0.2",
"vee-validate": "^2.2.5",
"vue-jest": "^3.0.3"
}
}