-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
135 lines (135 loc) · 4.79 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
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "zkitter-js",
"version": "1.4.2",
"description": "Implementation of Zkitter using Waku and LevelDB",
"main": "dist/index.js",
"scripts": {
"dev-ui": "NODE_ENV=development npx webpack-dev-server --config webpack.web.js --hot",
"build-ui": "NODE_ENV=development webpack --config webpack.web.js",
"dev-server": "nodemon ./build/test.js",
"watch-server": "webpack --config webpack.config.js --watch",
"build-server": "webpack --config webpack.config.js",
"watch-lib": "webpack --config webpack.lib.js --watch",
"build-lib": "webpack --config webpack.lib.js",
"watch-weblib": "webpack --config webpack.weblib.js --watch",
"build-weblib": "webpack --config webpack.weblib.js",
"watch-cli": "webpack --config webpack.bin.js --watch",
"build-cli": "webpack --config webpack.bin.js",
"dev": "NODE_ENV=development concurrently --kill-others-on-fail npm:watch-cli npm:watch-lib npm:watch-weblib npm:dev-ui",
"tsc": "tsc --project tsconfig.compile.json",
"build": "NODE_ENV=production concurrently --kill-others-on-fail npm:build-cli npm:build-lib npm:build-weblib npm:tsc",
"start": "NODE_ENV=production npm run build && node ./build/server.js",
"test": "FORCE=true NODE_ENV=test TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' tape -r module-alias/register -r ts-node/register './src/**/*.test.ts' | tap-spec",
"depcheck": "depcheck . --config=depcheckrc.json",
"fix": "npm run lint:fix && npm run format:fix",
"format:check": "prettier --check .",
"format:fix": "prettier -w .",
"lint:check": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --ext .js,.ts --fix",
"validate": "concurrently tsc 'npm run depcheck' 'npm run lint:check' 'npm run format:check'"
},
"author": "0xtsukino",
"license": "ISC",
"bin": {
"zkitter": "./bin/cli.js"
},
"types": "dist/src/index.d.ts",
"browser": "dist/browser.js",
"files": ["dist/", "src/", "!/src/cli/*", "readme.md"],
"dependencies": {
"@nodeutils/defaults-deep": "^1.1.0",
"@waku/byte-utils": "^0.0.2",
"@waku/core": "^0.0.10",
"@waku/create": "^0.0.6",
"@waku/interfaces": "^0.0.7",
"@waku/libp2p-utils": "^0.0.3",
"@waku/peer-exchange": "^0.0.3",
"@waku/proto": "^0.0.2",
"@zk-kit/identity": "^1.4.1",
"@zk-kit/incremental-merkle-tree": "^0.4.3",
"@zk-kit/protocols": "^1.11.1",
"async-mutex": "^0.3.1",
"chalk": "^4.1.2",
"charwise": "^3.0.1",
"commander": "^10.0.0",
"crypto-js": "^4.1.1",
"elliptic": "^6.5.4",
"eventemitter2": "^6.4.9",
"isomorphic-fetch": "^3.0.0",
"js-waku": "^0.30.0",
"level": "^8.0.0",
"libp2p": "^0.41.0",
"module-alias": "^2.2.2",
"moment": "^2.29.4",
"nerd": "^0.0.0",
"promptly": "^3.2.0",
"protons-runtime": "^5.0.0",
"readable-stream": "^4.3.0",
"readline": "^1.3.0",
"snarkjs": "^0.5.0",
"uint8arraylist": "^2.4.3",
"web3": "^1.3.5",
"web3-core": "^1.8.2",
"web3-eth-contract": "^1.8.2",
"webpack-dev-server": "^4.11.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/crypto-js": "^4.1.1",
"@types/elliptic": "^6.4.14",
"@types/node": "^14.14.37",
"@types/promptly": "^3.0.2",
"@types/sinon": "^10.0.11",
"@types/tape": "^4.13.2",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@zkitter/eslint-config": "^1.0.2",
"@zkitter/prettier-config": "^1.0.0",
"ajv": "^8.12.0",
"assert": "^2.0.0",
"browserify": "^17.0.0",
"browserify-zlib": "^0.2.0",
"concurrently": "^6.5.1",
"constants-browserify": "^1.0.0",
"copy-webpack-plugin": "^11.0.0",
"crypto-browserify": "^3.12.0",
"depcheck": "^1.4.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-sort": "^2.4.0",
"html-webpack-plugin": "^5.5.0",
"https-browserify": "^1.0.0",
"node-loader": "^2.0.0",
"nodemon": "^2.0.12",
"nyc": "^15.1.0",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"sinon": "^13.0.1",
"source-map-support": "^0.5.21",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"tap-diff": "^0.0.0",
"tap-spec": "^2.2.2",
"tape": "^5.5.2",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"url": "^0.11.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-node-externals": "^3.0.0"
},
"engines": {
"node": "16.x - 18.x"
},
"esModuleInterop": true
}