-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.08 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
69
70
71
72
73
74
{
"name": "governor",
"version": "1.0.0",
"license": "MIT",
"description": "A web application to make OGDPs more accessible to end users by facilitating searching actual records in the tables, previewing them directly without downloading, and suggesting joinable and unionable tables to users based on their latest working tables.",
"scripts": {
"serve": "nodemon --exec \"vue-cli-service serve\"",
"serve-deployed": "npm run build && node src/server/DeployedServer",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"install-python": "python3 -m pip install -r requirements.txt"
},
"dependencies": {
"@duckdb/duckdb-wasm": "^1.16.1",
"@elastic/elasticsearch": "^7.15.0",
"@popperjs/core": "^2.11.5",
"add-dashes-to-uuid": "^1.0.0",
"apache-arrow": "^6.0.1",
"axios": "^0.23.0",
"bootstrap": "^5.1.3",
"bootstrap-vue": "^2.21.2",
"core-js": "^3.6.5",
"csv-parser": "^3.0.0",
"csv-stringify": "^6.0.4",
"csvtojson": "^2.0.10",
"es6-promise-pool": "^2.5.0",
"excel-column-name": "^1.0.1",
"express": "^4.17.1",
"iconv": "^3.0.1",
"mkdirp": "^1.0.4",
"moment": "^2.29.4",
"mongodb": "^4.1.3",
"nodemon": "^2.0.14",
"papaparse": "^5.3.2",
"randomcolor": "^0.6.2",
"underscore": "^1.13.1",
"uuid": "^8.3.2",
"vue": "^2.6.14",
"vue-easytable": "^2.16.0",
"vuex": "^3.6.2",
"wasm-loader": "^1.3.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"http-proxy-middleware": "^2.0.1",
"sass": "^1.36.0",
"sass-loader": "^10",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}