-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.42 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
{
"name": "vuefes",
"version": "1.0.0",
"description": "Vue Fes Japan",
"author": "INOUE Takuya <[email protected]>",
"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",
"test": "jest --verbose",
"test:ci": "jest --ci --coverage --no-cache",
"lint": "yarn eslint && yarn stylelint",
"lint:fix": "yarn eslint:fix && yarn stylelint:fix",
"eslint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"eslint:fix": "yarn eslint --fix",
"stylelint": "stylelint 'src/**/*.vue' 'src/**/*.scss'",
"stylelint:fix": "yarn stylelint --fix",
"precommit": "yarn lint && ./bin/imagemin"
},
"dependencies": {
"@nuxtjs/google-analytics": "^2.0.2",
"@nuxtjs/pwa": "^3.0.0-beta.8",
"@nuxtjs/style-resources": "^0.1.2",
"dotenv": "^6.2.0",
"intersection-observer": "^0.5.0",
"lodash.shuffle": "^4.2.0",
"normalize.css": "^8.0.0",
"nuxt": "^2.8.1",
"vue-lazyload": "^1.2.6"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@nuxtjs/eslint-config": "^0.0.1",
"@vue/test-utils": "^1.0.0-beta.25",
"ajv": "^6.12.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"eslint": "^5.14.1",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.3.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"fstream": "^1.0.12",
"handlebars": "^4.1.2",
"husky": "^0.14.3",
"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",
"js-yaml": "^3.13.1",
"node-sass": "4.14.1",
"prettier": "^1.16.4",
"sass-loader": "^7.1.0",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"stylelint-scss": "^3.5.4",
"stylelint-webpack-plugin": "^0.10.5",
"vue-jest": "^4.0.0-beta.2",
"webpack-bundle-analyzer": "^3.3.2"
}
}