-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.44 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
{
"name": "nuxt-ts-template",
"version": "1.0.1",
"description": "nuxt template starter",
"author": "Fox.ONE",
"license": "MIT",
"private": true,
"config": {
"nuxt": {
"host": "0.0.0.0",
"port": "3000"
}
},
"scripts": {
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "yarn lint",
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate"
},
"dependencies": {
"@foxone/icons": "^3.1.3-1",
"@foxone/uikit": "^3.1.5-0",
"@foxone/utils": "^0.2.21",
"@nuxtjs/axios": "5.8.0",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/i18n": "^7.2.2",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/sitemap": "^2.4.0",
"nuxt": "^2.0.0",
"vue": "^2.6.12",
"vue-class-component": "^7.1.0",
"vue-property-decorator": "^9.1.2",
"vue-template-compiler": "^2.6.10",
"vuetify": "^2.1.5",
"vuex": "^3.0.1",
"vuex-pathify": "^1.5.1",
"vuex-persistedstate": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@nuxt/types": "^2.14.4",
"@nuxt/typescript-build": "^2.0.3",
"@nuxtjs/eslint-config": "^2.0.0",
"@nuxtjs/eslint-config-typescript": "^0.1.2",
"@nuxtjs/eslint-module": "^0.0.1",
"@nuxtjs/vuetify": "^1.11.2",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"@vue/cli-plugin-typescript": "^4.5.2",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-import": "^1.12.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": ">=12.0.0",
"eslint-plugin-import": ">=2.16.0",
"eslint-plugin-jest": ">=22.3.0",
"eslint-plugin-node": ">=8.0.1",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-prettier": ">=3.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": ">=4.0.0",
"eslint-plugin-vue": "^5.2.2",
"fork-ts-checker-webpack-plugin": "^5.2.0",
"nodemon": "^1.18.9",
"prettier": "^1.16.4",
"typescript": "4.2.4",
"vuetify-loader": "^1.3.0",
"webpack": "^4.46.0"
},
"resolutions": {
"glob-parent": "^5.1.2",
"nth-check": "^2.0.1",
"follow-redirects": "^1.14.7",
"axios": "^0.21.1",
"ansi-regex": "^4.1.1"
}
}