-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
56 lines (56 loc) · 1.81 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
{
"name": "nuxt-element-admin",
"version": "1.0.0",
"private": false,
"scripts": {
"dev": "nuxt",
"dev:all": "concurrently -n dev,mock \"yarn dev\" \"yarn mock\"",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"gh:generate": "rm -rf dist .nuxt && nuxt generate --config-file settings/nuxt/nuxt.ghpages.config.js --dotenv settings/env/.env.github",
"gh:push": "gh-pages -d dist -t true",
"gh:deploy": "yarn gh:generate && yarn gh:push",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint": "yarn lint:js",
"update:core": "git pull https://github.com/nguyenduclong-ict/nuxt-element-admin.git core --allow-unrelated-histories"
},
"dependencies": {
"@nuxt/content": "^1.5.0",
"@nuxtjs/auth-next": "5.0.0-1608568767.2fe2217",
"@nuxtjs/axios": "^5.12.4",
"@nuxtjs/pwa": "^3.0.0-beta.20",
"@nuxtjs/style-resources": "^1.0.0",
"@nuxtjs/svg-sprite": "^0.4.12",
"@tinymce/tinymce-vue": "^3.2.2",
"bootstrap": "^4.5.2",
"chart.js": "^2.9.3",
"dayjs": "^1.8.36",
"element-ui": "^2.13.2",
"js-cookie": "^2.2.1",
"json-server": "^0.16.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"multer": "^1.4.2",
"node-sass": "^4.14.1",
"numeral": "^2.0.6",
"nuxt": "^2.14.0",
"sass-loader": "^10.0.2",
"slugify": "^1.4.5",
"vue-chartjs": "^3.5.1",
"vue-clipboard2": "^0.3.1",
"vue-count-to": "^1.0.13",
"vue-image-crop-upload": "^2.5.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^3.1.0",
"@nuxtjs/eslint-module": "^2.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-nuxt": "^1.0.0",
"eslint-plugin-prettier": "^3.1.4",
"gh-pages": "^3.1.0",
"prettier": "^2.0.5"
}
}