-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.48 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.48 KB
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
{
"private": true,
"version": "0.0.1",
"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",
"lint": "eslint --ext .js,.vue resources/js/ ./*.js",
"lint-css": "stylelint \"resources/sass/**/*.scss\"",
"fix": "eslint --ext .js,.vue resources/js/ ./*.js --fix",
"fix-css": "stylelint \"resources/sass/**/*.scss\" --fix",
"lint-full": "npm run lint && npm run lint-css",
"fix-full": "npm run fix && npm run fix-css"
},
"engines": {
"node": ">= 8.9.4",
"npm": ">= 5.6.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-plugin-wildcard": "^5.0.0",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.1",
"eslint": "^4.19.1",
"eslint-config-adenvt": "^1.0.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-unicorn": "^4.0.3",
"eslint-plugin-varspacing": "^1.2.1",
"eslint-plugin-vue": "^4.7.1",
"laravel-mix": "^2.1.14",
"prettier": "1.12.1",
"stylelint": "^9.5.0",
"stylelint-config-sass-guidelines": "^5.2.0",
"stylelint-scss": "^3.3.0"
},
"dependencies": {
"animate.css": "^3.7.0",
"axios": "^0.18",
"bootstrap": "^4.1.3",
"bootstrap-vue": "^2.0.0-rc.11",
"chart.js": "^2.7.2",
"flag-icon-css": "^3.0.0",
"font-awesome": "^4.7.0",
"jquery": "^3.2",
"js-cookie": "^2.2.0",
"lodash": "^4.17.11",
"popper.js": "^1.14.4",
"select2": "^4.0.6-rc.1",
"select2-bootstrap4-theme": "^1.0.0",
"simple-line-icons": "^2.4.1",
"vue": "^2.5.17",
"vue-chartjs": "^3.4.0",
"vue-loading-spinner": "^1.0.11",
"vue-notification": "^1.3.13",
"vue-router": "^3.0.1",
"vue-sweetalert2": "^1.5.3",
"vuejs-datepicker": "^1.5.3",
"vuex": "^3.0.1"
}
}