-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.76 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@shardus/core",
"version": "2.13.3",
"engines": {
"node": "18.16.1"
},
"description": "The Shardus Global Server",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*",
"LICENSE",
"LICENSE_SHARDUS"
],
"config": {
"dist": "./dist"
},
"scripts": {
"lint": "eslint \"./src/**/*.ts\"",
"ensure:node-version": "node -e \"'v' + require('./package.json').engines.node == process.version || process.exit(1)\"",
"clean": "shx rm -rf dist build",
"create:folders": "shx mkdir -p dist",
"compile:ts": "tsc",
"compile:pack": "webpack",
"compile:js": "bytenode -c build/src/index.js",
"release:move:typedocs": "shx mv build/src/index.d.ts dist/",
"release:move:extras": "shx mv build/src/crypto/computePowGenerator.js dist/ && shx cp templates/release.index.js dist/index.js",
"dev:move": "shx mv build/src dist",
"prep": "npm run create:folders",
"np": "np --any-branch --no-cleanup --no-tests --no-yarn --message=\"Bump version to %s\"",
"compile": "npm-run-all compile:*",
"prepare": "npm run build:dev",
"release:move": "npm-run-all release:move:*",
"build:dev": "npm-run-all clean compile:ts dev:move",
"build:release": "npm-run-all clean prep compile release:move",
"release": "npm-run-all ensure:* build:release np",
"check": "gts check",
"fix": "gts fix",
"test": "jest",
"test-watch": "jest --watch",
"depcheck": "depcheck --skip-missing --ignores webpack,webpack-cli,prettier,typescript-eslint,typescript-estree,@mapbox/node-pre-gyp,@types/estree",
"format-check": "prettier --check './src/**/*.ts'",
"format-fix": "prettier --write './src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "[email protected]:shardeum/shardus-core.git"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@hapi/sntp": "3.1.1",
"@mapbox/node-pre-gyp": "1.0.10",
"@shardus/crypto-utils": "4.1.4",
"@shardus/net": "1.4.0",
"@shardus/types": "1.2.21-1",
"@types/better-sqlite3": "7.6.3",
"body-parser": "1.18.3",
"bytenode": "1.3.4",
"cors": "2.8.5",
"deepmerge": "4.2.2",
"express": "4.19.2",
"got": "11.8.6",
"log4js": "6.4.1",
"log4js-extend": "0.2.1",
"nat-api": "timadinorth/nat-api#appsec-dep-fix",
"neverthrow": "6.0.0",
"rfdc": "^1.3.0",
"socket.io": "2.5.0",
"sqlite3": "5.1.6",
"streamroller": "3.1.3",
"tar-fs": "2.1.0",
"trie-prefix-tree": "1.5.1"
},
"devDependencies": {
"@types/cors": "2.8.6",
"@types/estree": "1.0.1",
"@types/express": "4.17.3",
"@types/got": "9.6.9",
"@types/jest": "27.0.1",
"@types/node": "18.16.1",
"@types/socket.io": "2.1.11",
"@types/sqlite3": "3.1.8",
"@types/tar-fs": "1.16.2",
"@types/trie-prefix-tree": "1.5.0",
"@typescript-eslint/eslint-plugin": "5.48.0",
"@typescript-eslint/parser": "5.48.0",
"bytenode-webpack-plugin": "1.0.5",
"depcheck": "1.4.3",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-no-unsanitized": "4.0.2",
"eslint-plugin-security": "1.5.0",
"eslint-plugin-xss": "0.1.12",
"gts": "3.1.1",
"jest": "27.1.1",
"np": "9.2.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.1",
"replace-in-file": "6.3.5",
"shx": "0.3.4",
"ts-jest": "27.0.5",
"typescript": "4.9.4",
"typescript-eslint": "0.0.1-alpha.0",
"typescript-estree": "18.1.0",
"webpack": "5.94.0",
"webpack-cli": "4.9.2",
"webpack-node-externals": "1.7.2"
},
"overrides": {
"qs": "6.11.2",
"ip": "2.0.1",
"@hapi/hoek": "8.5.1",
"xml2js": "0.5.0",
"debug": "4.3.4",
"engine.io": "3.6.1",
"@babel/traverse": "7.23.2",
"tough-cookie": "4.1.3",
"postcss": "8.4.31"
}
}