forked from sujit-baniya/fiber-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.19 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
{
"name": "vue-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"development": "mix",
"dev": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"production": "mix --production",
"prod": "mix --production"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/eslint-parser": "^7.17.0",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/vue-fontawesome": "^2.0.6",
"@vue/composition-api": "^1.4.9",
"autoprefixer": "^10.4.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"browser-sync": "^2.27.9",
"browser-sync-webpack-plugin": "2.3.0",
"chart.js": "^3.7.1",
"core-js": "^3.21.1",
"del": "^6.0.0",
"dns-packet": "^5.3.1",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^8.6.0",
"gridjs-vue": "^0.5.2",
"laravel-mix": "^6.0.43",
"postcss": "^8.4.12",
"resolve-url-loader": "^3.1.4",
"sass": "^1.49.11",
"sass-loader": "^8.0.2",
"tailwindcss": "^2.2.19",
"vue": "^2.6.14",
"vue-chartjs": "^3.5.1",
"vue-clickaway": "^2.2.2",
"vue-loader": "^15.9.8",
"vue-router": "^3.5.3",
"vue-tabs-with-active-line": "^1.2.6",
"vue-template-compiler": "^2.6.14",
"vuejs-datatable": "^2.0.0-alpha.7",
"vuex": "^3.6.2"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"dependencies": {
"axios": "^0.22.0",
"css-loader": "^5.2.7",
"flag-icons": "^6.1.1",
"lodash": "^4.17.21",
"webpack": "^5.71.0"
}
}