-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.19 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
{
"name": "sportyspots",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vue-cli-service serve",
"dev:e2e": "vue-cli-service e2e --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 \\.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",
"graphql:updateSchemaJSON":
"get-graphql-schema https://training.sportyspots.com/graphql > schema.graphql.json --json"
},
"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.22",
"apollo-link": "^1.2.2",
"apollo-link-http": "^1.5.4",
"axios": "0.18.0",
"bootstrap": "^4.0.0",
"chart.js": "^2.7.1",
"element-ui": "^2.2.1",
"es6-promise": "^4.1.1",
"fullcalendar": "^3.9.0",
"fuse.js": "^3.2.0",
"google-maps": "^3.2.1",
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"jquery": "^3.2.1",
"jvectormap-next": "^3.0.0",
"lodash": "4.17.10",
"moment": "^2.22.2",
"nouislider": "^9.1.10",
"nprogress": "0.2.0",
"perfect-scrollbar": "^1.3.0",
"sweetalert2": "^7.0.0",
"tween.js": "^16.6.0",
"vee-validate": "^2.0.5",
"vue": "2.5.16",
"vue-chartjs": "^3.1.0",
"vue-clickaway": "^2.1.0",
"vue-meta": "1.5.0",
"vue-router": "3.0.1",
"vue2-google-maps": "^0.8.4",
"vue2-transitions": "^0.2.2",
"vuejs-datepicker": "^0.9.25",
"vuex": "3.0.1"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.47",
"@vue/cli-plugin-babel": "3.0.0-beta.11",
"@vue/cli-plugin-eslint": "3.0.0-beta.11",
"@vue/cli-plugin-unit-jest": "3.0.0-beta.11",
"@vue/cli-service": "3.0.0-beta.11",
"@vue/eslint-config-prettier": "3.0.0-beta.11",
"@vue/eslint-config-standard": "3.0.0-beta.11",
"@vue/test-utils": "1.0.0-beta.16",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "22.4.x",
"babel-loader": "8.0.0-beta.2",
"cross-env": "5.1.x",
"express": "4.16.x",
"hygen": "1.5.x",
"imagemin-lint-staged": "0.3.x",
"lint-staged": "7.1.x",
"markdownlint-cli": "0.9.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.8.x",
"webpack-bundle-analyzer": "2.13.x"
}
}