-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.75 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
{
"name": "zallo",
"packageManager": "[email protected]",
"private": true,
"version": "0.1.0",
"author": "Hayden Briese <[email protected]>",
"workspaces": [
"api",
"app",
"contracts",
"docs",
"packages/**",
"services/**"
],
"scripts": {
"postinstall": "husky install .config/husky",
"api": "yarn turbo run -F api",
"app": "yarn turbo run -F app",
"contracts": "yarn turbo run -F contracts",
"docs": "yarn turbo run -F docs",
"lib": "yarn turbo run -F lib",
"chains": "yarn turbo run -F chains",
"dev": "yarn turbo run dev",
"test": "yarn turbo run test",
"prettier": "prettier --config .config/.prettierrc --ignore-path .config/.prettierignore --ignore-unknown",
"lint": "yarn turbo run lint",
"clean": "yarn turbo run clean",
"update-env": "npx dotenv-vault@latest push production"
},
"engines": {
"node": "20.12.2",
"yarn": "4.x"
},
"devDependencies": {
"@matterlabs/zksync-contracts": "link:./packages",
"@openzeppelin/contracts": "link:./packages",
"@pythnetwork/pyth-sdk-solidity": "link:./packages",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"forge-std": "link:./packages",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"react-relay": "link:./packages",
"relay-compiler": "link:./packages",
"relay-runtime": "link:./packages",
"solady": "link:./packages",
"turbo": "^2.0.14"
},
"resolutions": {
"dotenv": "patch:dotenv@npm:16.4.5#.yarn/patches/dotenv-npm-16.4.5-bcb20eb95d.patch",
"react-native": "0.74.5",
"promise": "8.3.0"
}
}