-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1023 Bytes
/
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
{
"name": "nil-monorepo",
"private": true,
"version": "1.0.0",
"workspaces": [
"smart-contracts",
"niljs",
"create-nil-hardhat-project",
"docs",
"explorer_frontend",
"explorer_backend",
"uniswap",
"clijs",
"docs_ai_backend"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"install:clean": "rm -rf package-lock.json && rm -rf node_modules && rm -rf */node_modules && rm -rf */package-lock.json && npm i",
"pub": "npm run pub --workspaces --if-present"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@biomejs/biome": "1.9.4"
},
"optionalDependencies": {
"@biomejs/cli-linux-x64": "1.9.4",
"@biomejs/cli-win32-x64": "1.9.4"
},
"overrides": {
"whatwg-url": "13.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"rollup": "npm:@rollup/wasm-node@^4.0.0"
}
}