-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
122 lines (122 loc) · 4.15 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "bellevue",
"version": "2.4.0",
"description": "A full-featured frontend project template for modern single-page applications built on Vue.js and Webpack.",
"author": "Jerry Jäppinen <[email protected]>",
"private": true,
"scripts": {
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
"start": "npm run dev",
"dist": "npx lite-server --baseDir=dist",
"unit": "jest --config test/unit/jest.conf.js",
"unit:report": "jest --config test/unit/jest.conf.js --coverage",
"unit:watch": "jest --watch --config test/unit/jest.conf.js",
"e2e": "node test/e2e/runner.js",
"test": "npm run unit && npm run e2e",
"lint": "npm run lint:js && npm run lint:styles",
"lint:js": "eslint --ext .js,.vue src e2e unit",
"lint:styles": "npm run lint:styles:global && npm run lint:styles:vue",
"lint:styles:global": "stylelint src/**/*.css src/**/*.scss --config 'src/.stylelintrc.js'",
"lint:styles:vue": "stylelint 'src/**/*.vue' --config 'src/.stylelintrc.js'",
"build": "node build/build.js",
"build:report": "npm run build --report",
"ondeploy": "npm run build"
},
"dependencies": {
"lodash": "^4.17.11",
"moabit": "0.0.4",
"raf": "^3.4.1",
"vue": "^2.5.22",
"vue-analytics": "^5.12.2",
"vue-images-loaded": "^1.1.2",
"vue-meta": "^1.5.8",
"vue-router": "^3.0.2",
"vuex": "^3.0.1"
},
"devDependencies": {
"autoprefixer": "^8.6.5",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-jest": "^22.4.4",
"babel-loader": "^7.1.5",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"chalk": "^2.4.2",
"chromedriver": "^2.38.3",
"copy-webpack-plugin": "^4.5.1",
"cross-spawn": "^6.0.5",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^4.0.6",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.15.2",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-vue": "^4.5.0",
"eventsource-polyfill": "^0.9.6",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^2.30.1",
"jest": "^22.4.4",
"jest-css-modules": "^1.1.0",
"jest-serializer-vue": "^1.0.0",
"jest-static-stubs": "0.0.1",
"nightwatch": "^0.9.21",
"node-notifier": "^5.2.1",
"node-sass": "^4.9.0",
"offline-plugin": "^4.9.1",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^1.4.0",
"portfinder": "^1.0.20",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.5",
"rimraf": "^2.6.3",
"robotstxt-webpack-plugin": "^4.0.1",
"sass-loader": "^6.0.7",
"sass-resources-loader": "^1.3.5",
"sass-vars-to-js-loader": "^2.0.3",
"selenium-server": "^3.12.0",
"semver": "^5.5.0",
"shelljs": "^0.8.3",
"sitemap-webpack-plugin": "^0.5.1",
"stylelint": "^9.2.1",
"stylelint-config-standard": "^18.2.0",
"stylelint-processor-html": "^1.0.0",
"stylelint-scss": "^2.5.0",
"stylelint-webpack-plugin": "^0.10.5",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^0.6.2",
"vue-jest": "^2.6.0",
"vue-loader": "^14.2.4",
"vue-style-loader": "^4.1.2",
"vue-svg-loader": "^0.5.0",
"vue-template-compiler": "^2.5.22",
"vue-test-utils": "^1.0.0-beta.11",
"webapp-manifest-plugin": "0.0.4",
"webpack": "^3.12.0",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-dev-server": "^2.11.3",
"webpack-merge": "^4.1.2"
},
"engines": {
"node": "10.14.2",
"npm": "6.4.1"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
]
}