forked from bencodezen/vue-enterprise-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.33 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
{
"name": "frontend",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vue-cli-service serve",
"dev:e2e": "vue-cli-service e2e:open --mode=development",
"build": "vue-cli-service build",
"build:ci": "cross-env ANALYZE=true yarn build",
"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\\.js$",
"unit:watch": "yarn unit --watch --notify --notifyMode change",
"e2e": "vue-cli-service e2e",
"test": "yarn unit && yarn e2e",
"test:ci": "yarn lint && yarn unit --coverage --ci && yarn e2e",
"new": "hygen new"
},
"gitHooks": {
"pre-commit": "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": "1.1.4",
"@fortawesome/fontawesome-free-solid": "5.0.8",
"@fortawesome/vue-fontawesome": "0.0.22",
"axios": "0.18.0",
"lodash": "4.17.5",
"normalize.css": "8.0.0",
"nprogress": "0.2.0",
"vue": "2.5.16",
"vue-meta": "1.5.0",
"vue-router": "3.0.1",
"vuex": "3.0.1"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.42",
"@vue/cli-plugin-babel": "3.0.0-beta.6",
"@vue/cli-plugin-e2e-cypress": "3.0.0-beta.6",
"@vue/cli-plugin-eslint": "3.0.0-beta.6",
"@vue/cli-plugin-unit-jest": "3.0.0-beta.6",
"@vue/cli-service": "3.0.0-beta.6",
"@vue/eslint-config-prettier": "3.0.0-beta.6",
"@vue/eslint-config-standard": "3.0.0-beta.6",
"@vue/test-utils": "1.0.0-beta.12",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "22.4.x",
"cross-env": "^5.1.4",
"express": "4.16.x",
"hygen": "1.5.x",
"imagemin-lint-staged": "0.3.x",
"lint-staged": "7.0.x",
"markdownlint-cli": "0.8.x",
"node-sass": "4.7.x",
"sass-loader": "6.0.x",
"stylelint": "9.1.x",
"stylelint-config-css-modules": "1.2.x",
"stylelint-config-prettier": "3.0.x",
"stylelint-config-recess-order": "2.0.x",
"stylelint-config-standard": "18.2.x",
"stylelint-scss": "2.5.x",
"vue-jest": "2.3.x",
"vue-template-compiler": "2.5.16",
"webpack-bundle-analyzer": "2.11.x"
}
}