forked from NilFoundation/nil
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.31 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
{
"name": "nil-monorepo",
"private": true,
"version": "1.0.0",
"workspaces": [
"smart-contracts",
"niljs",
"create-nil-hardhat-project",
"docs",
"explorer_frontend",
"explorer_backend",
"uniswap",
"clijs",
"wallet-extension",
"docs_ai_backend",
"rollup-bridge-contracts",
"academy/*"
],
"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 && npm dedupe",
"pub": "npm run pub --workspaces --if-present"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"fs-extra": "^11.3.0",
"hardhat": "^2.22.19",
"rimraf": "^6.0.1",
"vitest": "^2.1.6"
},
"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",
"@types/react": "18.3.1",
"rollup": "npm:@rollup/wasm-node@^4.0.0",
"@types/node": "18.19.80"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
}
}