-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.22 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.22 KB
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
{
"name": "@arken/node",
"version": "1.5.10",
"description": "",
"scripts": {
"build": "npm-run-all dist",
"clean": "del-cli ./build && make-dir ./build",
"dist": "npm-run-all clean tsc:*",
"publish": "npm publish --access=public",
"test": "jest --detectOpenHandles --forceExit --coverage --verbose --config jest.unit.config.js",
"test:watch": "jest --watch --collect-coverage --config=jest.unit.config.js",
"tsc:1": "rm -rf ./build && mkdir ./build && mkdir ./build/contracts && mkdir ./build/data && mkdir ./build/data/generated && cp package.json ./build && NODE_ENV=production NODE_OPTIONS=--max-old-space-size=8192 tsc -p tsconfig.build.json",
"zk:regen-updateLeaf": "ts-node scripts/zk-regen-updateLeaf.ts"
},
"dependencies": {
"@trpc/server": "11.0.0-rc.660",
"@trpc/client": "11.0.0-rc.660",
"axios": "^1",
"crypto-js": "^4",
"dayjs": "^1",
"js-md5": "^0",
"lodash": "^4",
"lokijs": "^1",
"moment": "^2",
"mongoose": "^8",
"openai": "^4",
"pluralize": "^8",
"puppeteer": "^22",
"compromise": "^14",
"langdetect": "^0",
"shortid": "^2",
"socket.io-client": "^4",
"timestring": "^7",
"utf8": "^3",
"keccak256": "~1.0.6",
"uuid": "^9",
"zod": "^3",
"rxjs": "^7",
"natural": "^7",
"fast-safe-stringify": "^2",
"@types/socket.io-client": "~3.0.0",
"otplib": "~12.0.1",
"mongoose-autopopulate": "~1.1.0",
"snarkjs": "~0.7.5",
"circomlib": "~2.0.5",
"circomlibjs": "~0.1.7"
},
"devDependencies": {
"@types/common-tags": "^1",
"@types/jest": "^29",
"@types/lodash": "^4",
"@types/mongoose": "^5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"del-cli": "^5",
"eslint": "^8",
"eslint-config-marine": "^3",
"eslint-config-prettier": "^8",
"eslint-plugin-prettier": "^3",
"eslint-plugin-react": "^7",
"eslint-plugin-react-hooks": "^4",
"jest": "^29",
"jest-environment-jsdom": "^29",
"jest-html-reporters": "^2",
"jest-junit": "^12",
"make-dir-cli": "^3",
"npm-run-all": "^4",
"ts-jest": "^29"
}
}