-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.48 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.48 KB
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
98
99
100
101
{
"name": "gdg-bali",
"version": "0.0.1",
"private": true,
"scripts": {
"serve": "firebase serve",
"build": "vue-cli-service build",
"test": "yarn unit && yarn e2e",
"e2e": "vue-cli-service test:e2e --headless",
"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}\"",
"build:ci": "yarn build --report",
"analyze": "yarn build:ci && open dist/report.html",
"build:modern": "vue-cli-service build --modern",
"dev": "vue-cli-service serve --fix",
"dev:e2e": "vue-cli-service test:e2e --mode=development",
"docs": "vuepress dev",
"new": "hygen new",
"perf": "lighthouse --output-path=./lighthouse/report.html --view http://localhost:5000/",
"perf:dev": "lighthouse --output-path=./lighthouse/report-dev.html --view http://localhost:5000/",
"perf:prod": "lighthouse --output-path=./lighthouse/report-production.html --view https://gdgbali.com/",
"perf:staging": "lighthouse --output-path=./lighthouse/report-staging.html --view https://dev-gdg-bali.firebaseapp.com/",
"test:ci": "yarn lint && yarn unit --coverage --ci && yarn e2e",
"unit": "vue-cli-service test:unit",
"unit:watch": "yarn unit --watch --notify --notifyMode change"
},
"dependencies": {
"@casl/ability": "^2.5.0",
"@casl/vue": "^0.4.3",
"axios": "0.18.0",
"date-fns": "^1.29.0",
"idb": "^2.1.3",
"lodash": "4.17.10",
"nprogress": "0.2.0",
"register-service-worker": "^1.5.2",
"vue": "^2.5.17",
"vue-analytics": "^5.16.0",
"vue-google-oauth2-gapi": "^1.0.11",
"vue-i18n": "^8.3.0",
"vue-meta": "^1.5.5",
"vue-qr": "^1.5.2",
"vue-router": "3.0.1",
"vue-tiny-slider": "^0.1.30",
"vuelidate": "^0.7.4",
"vuetify": "^1.3.5",
"vuex": "3.0.1"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@vue/cli-plugin-babel": "^3.1.x",
"@vue/cli-plugin-e2e-cypress": "^3.1.x",
"@vue/cli-plugin-eslint": "^3.1.x",
"@vue/cli-plugin-pwa": "^3.1.x",
"@vue/cli-plugin-unit-jest": "^3.1.x",
"@vue/cli-service": "^3.1.x",
"@vue/eslint-config-prettier": "^4.0.x",
"@vue/eslint-config-standard": "^4.0.x",
"@vue/test-utils": "^1.0.0-beta.24",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.4.x",
"babel-loader": "^8.0.0",
"babel-plugin-transform-imports": "^1.5.1",
"cross-env": "5.2.x",
"eslint-plugin-vue": "5.0.0-beta.3",
"express": "4.16.x",
"html-critical-webpack-plugin": "^2.1.0",
"hygen": "^1.6.x",
"imagemin-lint-staged": "0.3.x",
"lighthouse": "^3.2.x",
"lint-staged": "8.0.x",
"markdownlint-cli": "^0.13.x",
"node-sass": "4.10.x",
"sass-loader": "^7.1.x",
"style-loader": "^0.23.1",
"stylelint": "^9.5.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.1.x",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vue-cli-plugin-vuetify": "^0.4.5",
"vue-jest": "2.6.x",
"vue-template-compiler": "^2.5.17",
"vuepress": "^0.14.x",
"vuetify-loader": "^1.0.6"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"engines": {
"node": ">=10.8.0",
"yarn": ">=1.0.0"
},
"gitHooks": {
"pre-commit": "cross-env PRE_COMMIT=true lint-staged"
}
}