-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
102 lines (102 loc) · 3.5 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
98
99
100
101
102
{
"name": "vue3-boilerplate",
"description": "Vue 3, Vue Router 4, Vuex 4, Vue Class Component 8, Typescript 4, Jest, Sass, ESLint, Prettier - Boilerplate 2021",
"version": "1.0.8",
"repository": {
"type": "git",
"url": "git+https://github.com/idimetrix/vue3-boilerplate.git"
},
"keywords": [
"vue 3 boilerplate",
"vue3 boilerplate",
"vue 3 skeleton",
"vue3 skeleton",
"vue 3 starter",
"vue3 starter",
"vue 3 webpack boilerplate",
"vue3 webpack boilerplate",
"vue 3 webpack skeleton",
"vue3 webpack skeleton",
"vue 3 webpack starter",
"vue3 webpack starter",
"vue3 enterprise boilerplate",
"vue 3 enterprise boilerplate",
"vue3 enterprise skeleton",
"vue 3 enterprise skeleton",
"vue3 enterprise starter",
"vue 3 enterprise starter"
],
"files": [
"**/*"
],
"author": "Dmitry Selikhov",
"email": "selikhov.dmitrey@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/idimetrix/vue3-boilerplate/issues"
},
"homepage": "https://github.com/idimetrix/vue3-boilerplate",
"private": false,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build:analyze": "source-map-explorer 'dist/**/*.js'",
"build:serve": "cd dist && ws --spa index.html",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint",
"lint:fix": "vue-cli-service lint --fix",
"prettier": "prettier --write '(src|tests|public)/**/*.{js,jsx,ts,tsx,vue,htm,html,json,xml,css,scss,sass}' '*.{js,jsx,ts,tsx,vue,htm,html,json,xml,css,scss,sass}'",
"format": "yarn prettier && yarn lint:fix",
"cz": "git cz",
"commit": "git add -A && (git diff-index --quiet HEAD || git commit -m 'deploy' --no-verify) && git push origin HEAD",
"version": "standard-version",
"ncu": "ncu -u --timeout 100000 && yarn install && yarn format"
},
"dependencies": {
"aos": "^3.0.0-beta.6",
"core-js": "^3.14.0",
"flex.box": "^3.4.4",
"logvis": "^1.0.6",
"register-service-worker": "^1.7.2",
"vue": "^3.1.1",
"vue-class-component": "^8.0.0-rc.1",
"vue-router": "^4.0.8",
"vuex": "^4.0.1",
"vuex-module-decorators": "^1.0.1",
"vuex-router-sync": "^6.0.0-rc.1"
},
"devDependencies": {
"@types/aos": "^3.0.3",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.26.2-alpha.0",
"@typescript-eslint/parser": "^4.26.2-alpha.0",
"@vue/cli-plugin-babel": "~5.0.0-beta.1",
"@vue/cli-plugin-e2e-cypress": "~5.0.0-beta.1",
"@vue/cli-plugin-eslint": "~5.0.0-beta.1",
"@vue/cli-plugin-pwa": "~5.0.0-beta.1",
"@vue/cli-plugin-router": "~5.0.0-beta.1",
"@vue/cli-plugin-typescript": "~5.0.0-beta.1",
"@vue/cli-plugin-unit-jest": "~5.0.0-beta.1",
"@vue/cli-plugin-vuex": "~5.0.0-beta.1",
"@vue/cli-service": "~5.0.0-beta.1",
"@vue/compiler-sfc": "^3.1.1",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^2.0.0-beta.7",
"babel-plugin-transform-decorators": "^7.0.0-beta.3",
"commitizen": "^4.2.4",
"eslint": "^7.28.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.10.0",
"git-cz": "^4.7.6",
"local-web-server": "^4.2.1",
"node-sass": "^6.0.0",
"prettier": "^2.3.1",
"sass-loader": "^12.0.0",
"source-map-explorer": "^2.5.2",
"standard-version": "^9.3.0",
"typescript": "~4.4.0-dev.20210607",
"vue-jest": "^5.0.0-alpha.10"
}
}