-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
executable file
·69 lines (69 loc) · 2 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
{
"name": "vue-datatables-net",
"description": "Vue jQuery DataTables.net wrapper component",
"version": "2.0.1",
"author": "[email protected]",
"license": "MIT",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/niiknow/vue-datatables-net.git"
},
"scripts": {
"watch": "mix watch",
"production": "vite build",
"lint": "tslint --project ./tsconfig.json src/**/*.ts && eslint src/**/*.vue example/**/*.vue",
"lint-fix": "tslint --project ./tsconfig.json --fix src/**/*.ts && eslint --fix src/**/*.vue example/**/*.vue",
"test": "jest"
},
"browserslist": [
"> 1%",
"last 2 versions",
"ie >= 8"
],
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@vitejs/plugin-vue": "^2.3.2",
"@vue/cli-plugin-unit-jest": "^5.0.4",
"@vue/cli-service": "^5.0.4",
"@vue/compiler-sfc": "^3.2.33",
"@vue/test-utils": "^2.0.0-rc.21",
"@vue/vue3-jest": "^27.0.0",
"bootstrap": "5.1.3",
"browser-sync": "^2.27.9",
"browser-sync-webpack-plugin": "^2.3.0",
"core-js": "^3.22.4",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"datatables.net-bs5": "^1.11.5",
"datatables.net-buttons-bs5": "^2.2.2",
"datatables.net-responsive": "^2.2.9",
"datatables.net-responsive-bs5": "^2.2.9",
"datatables.net-select-bs5": "^1.3.4",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-vue": "^8.7.1",
"eslint-webpack-plugin": "^3.1.1",
"jest": "27.5.1",
"laravel-mix": "^6.0.43",
"postcss": "^8.4.13",
"ts-jest": "27.1.4",
"ts-loader": "^9.3.0",
"ts-node": "^10.7.0",
"tsconfig-paths": "^4.0.0",
"tslint": "^6.1.3",
"typescript": "^4.6.4",
"vite": "^2.9.8",
"vite-plugin-css-injected-by-js": "^1.5.0",
"vue": "^3.2.33",
"vue-loader": "^17.0.0",
"vue-tsc": "^0.34.11",
"webpack": "^5.72.0"
}
}