forked from bencodezen/vue-enterprise-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.4 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": "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\\.js$",
"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": "1.1.8",
"@fortawesome/fontawesome-free-solid": "5.0.13",
"@fortawesome/vue-fontawesome": "0.0.23",
"axios": "0.18.0",
"lodash": "4.17.10",
"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.51",
"@vue/cli-plugin-babel": "3.0.0-rc.2",
"@vue/cli-plugin-e2e-cypress": "3.0.0-rc.2",
"@vue/cli-plugin-eslint": "3.0.0-rc.2",
"@vue/cli-plugin-unit-jest": "3.0.0-rc.2",
"@vue/cli-service": "3.0.0-rc.2",
"@vue/eslint-config-prettier": "3.0.0-rc.2",
"@vue/eslint-config-standard": "3.0.0-rc.2",
"@vue/test-utils": "1.0.0-beta.17",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.0.x",
"babel-loader": "8.0.0-beta.2",
"cross-env": "5.2.x",
"express": "4.16.x",
"hygen": "1.6.x",
"imagemin-lint-staged": "0.3.x",
"lint-staged": "7.2.x",
"markdownlint-cli": "0.10.x",
"node-sass": "4.9.x",
"sass-loader": "7.0.x",
"stylelint": "9.2.x",
"stylelint-config-css-modules": "1.2.x",
"stylelint-config-prettier": "3.2.x",
"stylelint-config-recess-order": "2.0.x",
"stylelint-config-standard": "18.2.x",
"stylelint-scss": "3.1.x",
"vue-jest": "2.6.x",
"vue-template-compiler": "2.5.16",
"vuepress": "0.10.x"
}
}