-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 3.08 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
{
"name": "frontend",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vue-cli-service serve",
"dev:e2e": "cross-env VUE_APP_TEST=e2e vue-cli-service test:e2e --mode=development",
"build": "vue-cli-service build --modern",
"build:ci": "yarn build --report",
"lint:eslint": "eslint --fix",
"lint:stylelint": "stylelint --fix",
"lint:markdownlint": "markdownlint",
"lint:prettier": "prettier --write --loglevel warn",
"lint:all:eslint": "yarn lint:eslint --ext .js,.vue .",
"lint:all:stylelint": "yarn lint:stylelint \"src/**/*.{vue,scss}\"",
"lint:all:markdownlint": "yarn lint:markdownlint \"docs/*.md\" \"*.md\"",
"lint:all:prettier": "yarn lint:prettier \"**/*.{js,json,css,scss,vue,html,md}\"",
"lint": "run-s lint:all:*",
"test:unit": "cross-env VUE_APP_TEST=unit vue-cli-service test:unit",
"test:unit:file": "yarn test:unit --bail --findRelatedTests",
"test:unit:watch": "yarn test:unit --watch --notify --notifyMode change",
"test:unit:ci": "yarn test:unit --coverage --ci",
"test:e2e": "cross-env VUE_APP_TEST=e2e vue-cli-service test:e2e --headless",
"test": "run-s test:unit test:e2e",
"test:ci": "run-s test:unit:ci",
"new": "cross-env HYGEN_TMPLS=generators hygen new",
"docs": "vuepress dev",
"docker": "docker-compose exec dev yarn"
},
"gitHooks": {
"pre-commit": "cross-env PRE_COMMIT=true lint-staged"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.25",
"@fortawesome/free-solid-svg-icons": "5.11.2",
"@fortawesome/vue-fontawesome": "0.1.7",
"axios": "0.19.0",
"esri-loader": "^2.12.0",
"lodash": "4.17.15",
"normalize.css": "8.0.1",
"nprogress": "0.2.0",
"vue": "2.6.10",
"vue-cookies": "^1.6.1",
"vue-meta": "2.2.2",
"vue-router": "3.1.3",
"vuex": "3.1.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "3.11.x",
"@vue/cli-plugin-e2e-cypress": "3.11.x",
"@vue/cli-plugin-eslint": "3.11.x",
"@vue/cli-plugin-unit-jest": "3.11.x",
"@vue/cli-service": "3.11.x",
"@vue/eslint-config-prettier": "5.0.x",
"@vue/eslint-config-standard": "4.0.x",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.x",
"cross-env": "6.0.x",
"eslint": "5.16.x",
"eslint-plugin-vue": "vuejs/eslint-plugin-vue#edf43ffe1c56db99c81d8eaa62de36b2fa47604e",
"express": "4.17.x",
"hygen": "4.0.x",
"imagemin-lint-staged": "0.4.x",
"lint-staged": "9.4.x",
"markdownlint-cli": "0.18.x",
"npm-run-all": "4.1.x",
"sass": "1.22.x",
"sass-loader": "8.0.x",
"stylelint": "11.0.x",
"stylelint-config-css-modules": "1.5.x",
"stylelint-config-prettier": "6.0.x",
"stylelint-config-recess-order": "2.0.x",
"stylelint-config-standard": "19.0.x",
"stylelint-scss": "3.11.x",
"vue-template-compiler": "2.6.10",
"vuepress": "1.1.x"
},
"resolutions": {
"@vue/cli-plugin-unit-jest/jest": "24.9.x",
"@vue/cli-plugin-unit-jest/babel-jest": "24.9.x"
},
"engines": {
"node": ">=10.13.3",
"yarn": ">=1.0.0"
}
}