-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
82 lines (82 loc) · 3.26 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "kuzu-explorer",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"serve": "NODE_ENV=development nodemon --exec \"vue-cli-service serve\"",
"serve-prod": "NODE_ENV=production node src/server/index.js",
"build": "KUZU_PATH=. vue-cli-service build",
"lint": "vue-cli-service lint",
"build-kuzu": "cd kuzu/tools/nodejs_api/ && npm i && cd ../.. && make nodejs NUM_THREADS=$(node -e \"console.log(require('os').cpus().length)\")",
"fetch-datasets": "node src/server/utils/FetchDatasets.js",
"generate-grammar-prod": "python3 node_modules/kuzu/kuzu-source/scripts/antlr4/keywordhandler.py node_modules/kuzu/kuzu-source/src/antlr4/Cypher.g4 node_modules/kuzu/kuzu-source/src/antlr4/keywords.txt ./Cypher.g4 /tmp/header.h && rm /tmp/header.h && rm -rf src/utils/CypherParser/ && npx antlr4ng-cli -o src/utils/CypherParser -Dlanguage=TypeScript -no-visitor -no-listener Cypher.g4 && rm Cypher.g4 && cd src/utils/CypherParser && mv CypherParser.ts CypherParserOld.ts && grep -v \"notify\" CypherParserOld.ts > CypherParser.ts && rm CypherParserOld.ts",
"generate-grammar": "python3 kuzu/scripts/antlr4/keywordhandler.py kuzu/src/antlr4/Cypher.g4 kuzu/src/antlr4/keywords.txt ./Cypher.g4 /tmp/header.h && rm /tmp/header.h && rm -rf src/utils/CypherParser/ && npx antlr4ng-cli -o src/utils/CypherParser -Dlanguage=TypeScript -no-visitor -no-listener Cypher.g4 && rm Cypher.g4 && cd src/utils/CypherParser && mv CypherParser.ts CypherParserOld.ts && grep -v \"notify\" CypherParserOld.ts > CypherParser.ts && rm CypherParserOld.ts",
"clean": "rm -rf node_modules dist datasets src/utils/CypherParser && git submodule deinit --all",
"eslint": "eslint --ext .js,.vue src",
"eslint-fix": "eslint --ext .js,.vue src --fix"
},
"dependencies": {
"@antv/g6": "^4.8.24",
"@duckdb/duckdb-wasm": "1.28.1-dev218.0",
"@popperjs/core": "^2.11.8",
"antlr4-c3": "3.2.3",
"antlr4ng": "1.0.7",
"axios": "^1.4.0",
"bootstrap": "^5.3.1",
"chroma-js": "^3.0.0",
"core-js": "^3.8.3",
"cors": "^2.8.5",
"dropzone": "^6.0.0-beta.2",
"express": "^4.18.2",
"kuzu": "0.7.1",
"moment": "^2.29.4",
"monaco-editor": "^0.41.0",
"monaco-themes": "^0.4.4",
"multer": "^1.4.5-lts.1",
"openai": "^4.20.1",
"pinia": "^2.0.23",
"pino": "^8.16.1",
"pino-pretty": "^10.2.3",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"uuid": "^9.0.1",
"vue": "^3.2.13"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-plugin-typescript": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"antlr4ng-cli": "^1.0.0",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.55.0",
"eslint-plugin-vue": "^9.19.2",
"monaco-editor-webpack-plugin": "^7.1.0",
"nodemon": "^3.0.1",
"sass": "^1.66.1",
"sass-loader": "^13.3.2",
"typescript": "^5.2.2",
"webpack": "^5.88.2"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}