-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·109 lines (109 loc) · 3.13 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
{
"name": "spaas-admin-template",
"version": "1.2.0",
"description": "Nuxt2 + element UI project",
"author": "spaasteam",
"license": "MIT",
"keywords": [
"vue",
"element-ui",
"nuxt",
"dashboard",
"admin-template"
],
"bin": {
"fe-path": "./bin/new/index.js"
},
"engines": {
"npm": ">= 5.2.0"
},
"scripts": {
"mock": "cross-env MODE=mock HOST=0.0.0.0 nuxt",
"dev": "cross-env MODE=dev nuxt",
"mock:nologin": "cross-env MODE=mock NO_LOGIN=1 nuxt",
"dev:nologin": "cross-env MODE=dev NO_LOGIN=1 nuxt",
"build": "cross-env MODE=prod nuxt build",
"build:docker": "nuxt build",
"new": "plop",
"start": "cross-env HOST=0.0.0.0 PORT=3333 MODE=prod nuxt start",
"start:docker": "nuxt start",
"generate": "cross-env MODE=prod nuxt generate",
"deploy": "now --npm --public",
"stdver": "standard-version -m '[skip ci] chore(release): v%s'",
"release": "gren release --override",
"fix": "eslint --fix src/**/*.js src/**/*.vue --quiet",
"lint": "lint-staged",
"commitmsg": "commitlint -E GIT_PARAMS",
"eslint-check": "eslint --print-config . | eslint-config-prettier-check",
"commit": "npx git-cz"
},
"dependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@femessage/el-form-renderer": "^1.11.2",
"@femessage/theme-deepexi": "^2.4.11",
"@nuxtjs/axios": "^5.5.4",
"@nuxtjs/dotenv": "^1.3.0",
"@nuxtjs/pwa": "^3.0.0-beta.16",
"@vue/cli-service": "^3.8.0",
"@vue/eslint-config-airbnb": "^4.0.0",
"clipboard": "^2.0.4",
"dayjs": "^1.7.4",
"dotenv": "^6.0.0",
"el-data-table": "^1.5.1",
"element-ui": "2.4.11",
"eslint-config-spaas": "^0.0.9",
"eslint-config-standard": "^12.0.0",
"git-cz": "^3.2.1",
"js-cookie": "^2.2.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"nuxt": "^2.8.1",
"path-to-regexp": "^3.0.0",
"prettier-eslint-cli": "^4.7.1",
"stylelint-config-prettier": "^5.2.0"
},
"devDependencies": {
"@nuxtjs/style-resources": "^0.1.2",
"babel-eslint": "^10.0.1",
"babel-plugin-component": "^1.1.0",
"cross-env": "^5.1.3",
"eslint": "^5.15.1",
"eslint-config-prettier": "^4.3.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"file-save": "^0.2.0",
"github-release-notes": "^0.17.0",
"husky": "^1.3.1",
"image-webpack-loader": "^5.0.0",
"lint-staged": "^8.1.0",
"mkdirp": "^0.5.1",
"plop": "^2.4.0",
"prettier": "^1.16.0",
"standard-version": "^6.0.1",
"stylelint": "^9.10.0",
"stylelint-config-standard": "^18.2.0",
"svg-sprite-loader": "^4.1.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"post-commit": "git update-index --again"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix src/**/*.js src/**/*.vue --quiet",
"git add"
],
"*.vue": [
"prettier --write",
"stylelint --fix",
"eslint --fix src/**/*.js src/**/*.vue --quiet",
"git add"
]
}
}