forked from bencodezen/vue-enterprise-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.3 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
{
"name": "frontend",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vue-cli-service serve",
"dev:e2e": "vue-cli-service test:e2e --mode=development",
"build": "vue-cli-service build --modern",
"build:ci": "yarn build --report",
"lint": "eslint --ext .js,.vue --fix . && stylelint --fix \"src/**/*.vue\" \"src/**/*.scss\" && markdownlint docs/*.md *.md && prettier --list-different --write \"**/*.{js,json,css,scss,vue,md}\"",
"unit": "vue-cli-service test:unit",
"unit:watch": "yarn unit --watch --notify --notifyMode change",
"e2e": "vue-cli-service test:e2e --headless",
"test": "yarn unit && yarn e2e",
"test:ci": "yarn lint && yarn unit --coverage --ci && yarn e2e",
"new": "hygen new",
"docs": "vuepress dev"
},
"gitHooks": {
"pre-commit": "cross-env PRE_COMMIT=true lint-staged"
},
"engines": {
"node": ">=8.9.0",
"yarn": ">=1.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.5",
"@fortawesome/free-solid-svg-icons": "5.4.0",
"@fortawesome/vue-fontawesome": "0.1.1",
"axios": "0.18.0",
"lodash": "4.17.11",
"normalize.css": "8.0.0",
"nprogress": "0.2.0",
"vue": "2.5.17",
"vue-meta": "1.5.5",
"vue-router": "3.0.1",
"vuex": "3.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "3.0.x",
"@vue/cli-plugin-e2e-cypress": "3.0.x",
"@vue/cli-plugin-eslint": "3.0.x",
"@vue/cli-plugin-unit-jest": "3.0.x",
"@vue/cli-service": "3.0.x",
"@vue/eslint-config-prettier": "3.0.x",
"@vue/eslint-config-standard": "3.0.x",
"@vue/test-utils": "1.0.0-beta.25",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.6.x",
"cross-env": "5.2.x",
"eslint-plugin-vue": "5.0.0-beta.3",
"express": "4.16.x",
"hygen": "1.6.x",
"imagemin-lint-staged": "0.3.x",
"lint-staged": "7.2.x",
"markdownlint-cli": "0.13.x",
"node-sass": "4.9.x",
"sass-loader": "7.1.x",
"stylelint": "9.6.x",
"stylelint-config-css-modules": "1.3.x",
"stylelint-config-prettier": "4.0.x",
"stylelint-config-recess-order": "2.0.x",
"stylelint-config-standard": "18.2.x",
"stylelint-scss": "3.3.x",
"vue-template-compiler": "2.5.17",
"vuepress": "0.14.x"
}
}