-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (69 loc) · 2.04 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": "block.gl",
"description": "Browser Blockchain",
"author": "Block Foundation",
"license": "Apache-2.0",
"version": "0.0.1",
"keywords": [
"blockfoundation",
"blockgl",
"webgl",
"blockchain"
],
"homepage": "https://block.gl",
"repository": {
"type": "git",
"url": "https://github.com/geoid-org/block.gl.git"
},
"bugs": {
"url": "https://github.com/geoid-org/block.gl/issues"
},
"main": "index.js",
"type": "module",
"scripts": {
"build": "node --loader ts-node/esm node_modules/.bin/webpack --mode production --config webpack.config.ts",
"test": "jest --watchAll",
"lint": "eslint . --fix",
"start": "node --loader ts-node/esm node_modules/.bin/webpack-dev-server --mode development --config webpack.config.ts",
"node-dev": "nodemon ./src/app",
"node-start": "node ./src/app",
"node-test": "node ./test/dev-test.js"
},
"dependencies": {
"@luma.gl/engine": "^8.5.20",
"@luma.gl/webgl": "^9.0.27",
"@types/crypto-js": "^4.1.1",
"@types/uuid": "^10.0.0",
"crypto-js": "^4.1.1",
"elliptic": "^6.5.4",
"express": "^4.18.2",
"tslint": "^6.1.3",
"uuid": "^9.0.0",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.2.3",
"@types/jest": "^23.1.3",
"eslint": "^9.13.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.6.1",
"nodemon": "^1.17.5",
"prettier": "^2.8.8",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"publishConfig": {
"access": "public"
},
"jest": {
"transform": {},
"testRegex_test": "/test/blockchain/index.test.js",
"testRegex": "/test/.*\\.test\\.(js)$",
"testEnvironment": "node"
}
}