-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
110 lines (110 loc) · 3.42 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
103
104
105
106
107
108
109
110
{
"name": "vue-admin-js",
"version": "0.0.10",
"description": "An open source frontend Framework for building admin applications running in the browser, using ES6, Vue.js and Vuetify.js",
"author": "Camba <[email protected]>",
"scripts": {
"build": "vue-cli-service build --target lib ./src/index.js",
"changelog": "npm run docker:changelog && git add CHANGELOG.md && git commit -am \"Updates changelog\"",
"docker:changelog": "docker run --env CHANGELOG_GITHUB_TOKEN=$CHANGELOG_GITHUB_TOKEN -it --rm -v $(pwd):/usr/local/src/your-app ferrarimarco/github-changelog-generator --user Cambalab --project vue-admin",
"lint": "vue-cli-service lint --no-fix --max-warnings 0",
"lint:autofix": "vue-cli-service lint",
"prepare": "npm run build",
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:major": "npm version major && npm publish",
"release:minor": "npm version minor && npm publish",
"release:patch": "npm version patch && npm publish",
"serve": "vue-cli-service serve",
"test": "npm run lint && npm run test:coverage && npm run test:e2e -- --headless",
"test:coverage": "vue-cli-service test:unit --coverage",
"test:e2e": "vue-cli-service test:e2e",
"test:unit": "vue-cli-service test:unit"
},
"dependencies": {},
"devDependencies": {
"@babel/polyfill": "^7.0.0-beta.49",
"@mdi/font": "^3.8.95",
"@vue/cli-plugin-babel": "^3.9.0",
"@vue/cli-plugin-e2e-cypress": "^3.0.0-rc.10",
"@vue/cli-plugin-eslint": "^3.9.0",
"@vue/cli-plugin-unit-jest": "^4.2.2",
"@vue/cli-service": "^4.2.2",
"@vue/test-utils": "^1.0.0-beta.29",
"axios": "^0.21.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^25.1.0",
"bavaria-ipsum": "^1.0.3",
"codecov": "^3.6.5",
"core-js": "^2.6.5",
"cypress": "^3.4.0",
"cypress-dark": "^1.7.13",
"deepmerge": "^4.0.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^5.2.3",
"fibers": "^4.0.1",
"husky": "^3.0.9",
"joi": "^14.3.1",
"lint-staged": "^9.4.2",
"material-design-icons-iconfont": "^5.0.1",
"moment": "^2.24.0",
"node-sass": "^4.13.1",
"prettier": "1.18.2",
"sass": "^1.17.4",
"sass-loader": "^7.1.0",
"vue": "^2.6.10",
"vue-cli-plugin-vuetify": "^0.6.1",
"vue-loader": "^15.8.3",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.6.10",
"vuetify": "^2.0.5",
"vuetify-loader": "^1.3.1",
"vuex": "^3.0.1",
"vuex-crud": "^0.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,json,vue}": [
"npm run lint:autofix",
"git add"
]
},
"directories": {
"doc": "https://github.com/Cambalab/vue-admin/blob/develop/Docs"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"bugs": {
"url": "https://github.com/Cambalab/vue-admin/issues"
},
"homepage": "https://github.com/Cambalab/vue-admin#readme",
"keywords": [
"admin",
"admin-dashboard",
"admin-on-rest",
"frontend-framework",
"open-source",
"vue",
"vuetify"
],
"license": "GPL-3.0",
"main": "./dist/vue-admin-js.umd.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Cambalab/vue-admin.git"
}
}