-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
77 lines (77 loc) · 2.07 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
{
"name": "zigzag-zksync-backend",
"version": "1.0",
"description": "Typescript implementation of Zigzag protocol",
"main": "src/index.ts",
"scripts": {
"test": "true",
"dev": "nodemon -x ts-node -e 'ts tsx json' -r ./src/env src/",
"build": "tsc",
"start": "ts-node -r ./src/env src/",
"background": "ts-node -r ./src/env ./src/background.ts",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zigzag/backend.git"
},
"author": "ZigZag Exchange",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/zigzag/backend/issues"
},
"homepage": "https://github.com/zigzag/backend#readme",
"dependencies": {
"@ethersproject/logger": "^5.4.0",
"@types/express": "^4.17.13",
"@types/isomorphic-fetch": "^0.0.35",
"@types/node": "^17.0.23",
"@types/pg": "^8.6.4",
"@types/throng": "^5.0.3",
"@types/ws": "^8.2.2",
"better-sqlite3": "^7.4.3",
"dotenv": "^10.0.0",
"ethers": "^5.5.4",
"express": "^4.17.1",
"install": "^0.13.0",
"isomorphic-fetch": "^3.0.0",
"joi": "^17.5.0",
"nodemon": "^2.0.15",
"npm": "^7.21.0",
"pg": "^8.7.1",
"redis": "^4.0.0",
"starknet": "3.10.1",
"throng": "^5.0.0",
"ts-node": "^10.5.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.5",
"ws": "^8.2.2",
"zksync": "0.13.1"
},
"optionalDependencies": {
"bufferutil": "^4.0.3",
"utf-8-validate": "^5.0.5"
},
"engines": {
"node": "16.17.1"
},
"imports": {
"src/*": "./src/*"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.0",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"pretty-quick": "^3.1.3"
}
}