-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·46 lines (46 loc) · 1.49 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
{
"name": "vueified-datatables",
"version": "2.1.2",
"description": "A vue drop in replacement for datatables",
"main": "src/VueifiedDataTables.vue",
"repository": {
"type": "git",
"url": "git+https://github.com/MordiSacks/vueified-datatables.git"
},
"keywords": [
"vue",
"vuejs",
"vue-datatables",
"datatable",
"ajax datatable",
"datatables"
],
"author": "Mordi Sacks",
"contributors": [
{
"name": "Racheli Elias-Sacks"
},
{
"name": "Yaron Hazan"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/MordiSacks/vueified-datatables/issues"
},
"scripts": {
"dev": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "cross-env NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"dependencies": {
"axios": "^0.18.0",
"qs": "^6.5.2",
"vue": "^2.5.0"
},
"devDependencies": {
"cross-env": "^5.1.3",
"laravel-mix": "^2.0"
}
}