-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.95 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
{
"name": "i-like-bonsai",
"version": "1.0.23",
"type": "module",
"main": "./dist/0.js",
"exports": "./src/index.ts",
"keywords": [
"sql",
"sqlite",
"data",
"emscripten",
"bst-tree"
],
"scripts": {
"start": "sh -c \"webpack-dev-server --config ./webpack.config.js --host=0.0.0.0 --port=3000\"",
"postinstall": "sh -c \"NODE_ENV=production webpack --mode none --config ./webpack.config.js\"",
"test": "sh -c \"cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --config ./jest.config.json --runInBand $@\" sh"
},
"author": "xmhscratch",
"license": "MIT",
"description": "Manipulating hierarchical BST tree structures.",
"homepage": "http://github.com/xmhscratch/i-like-bonsai",
"repository": {
"type": "git",
"url": "http://github.com/xmhscratch/i-like-bonsai.git"
},
"bugs": {
"url": "https://github.com/xmhscratch/i-like-bonsai/issues"
},
"dependencies": {
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.2",
"@types/sql.js": "^1.4.9",
"bson-objectid": "^2.0.4",
"circular-dependency-plugin": "^5.2.2",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-webpack-plugin": "^5.6.3",
"lodash-es": "^4.17.21",
"object-hash": "^3.0.0",
"speed-measure-webpack-plugin": "^1.5.0",
"sql.js": "^1.12.0",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"url-parse": "^1.5.10"
},
"peerDependencies": {
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"cross-env": "^7.0.3",
"cypress": "^13.17.0",
"eslint": "^9.17.0",
"eslint-plugin-jest": "^28.10.0",
"jest": "^29.7.0",
"mock-fs": "^5.4.1",
"ts-jest": "^29.2.5",
"webpack": "^5.97.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1",
"webpack-dev-middleware": "^7.4.2",
"webpack-dev-server": "^5.2.0",
"webpack-hot-middleware": "^2.26.1"
}
}