-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
59 lines (59 loc) · 1.92 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
{
"private": true,
"name": "laravue-core",
"version": "0.4.0",
"description": "Laravel package to provide core functionalities for Laravue dashboard",
"author": {
"name": "Tuan Duong",
"email": "bacduong@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tuandm/laravue-core.git"
},
"keywords": [
"laravel",
"laravue",
"vue",
"core"
],
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "npm run development -- --watch",
"watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"devDependencies": {
"axios": "^0.19",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"cross-env": "^7.0",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-vue": "^6.2.2",
"laravel-mix": "^5.0.1",
"laravel-mix-eslint": "^0.1.3",
"lodash": "^4.17.19",
"resolve-url-loader": "^3.1.0",
"sass": "^1.15.2",
"sass-loader": "^8.0.0",
"svg-sprite-loader": "^4.2.2",
"vue-template-compiler": "^2.6.11"
},
"dependencies": {
"element-ui": "^2.13.0",
"js-cookie": "^2.2.1",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"vue": "^2.6.11",
"vue-count-to": "^1.0.13",
"vue-i18n": "^8.16.0",
"vue-router": "^3.1.6",
"vuex": "^3.1.3"
}
}