forked from Adamantine-guild/guildpass-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 781 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 781 Bytes
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
{
"name": "guildpass-core",
"private": true,
"version": "0.1.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "npm run -ws build",
"dev": "npm run -w access-api dev",
"test": "npm run -ws test",
"lint": "npm run -ws lint",
"typecheck": "npm run -ws typecheck",
"seed": "npm run -w access-api seed",
"start": "npm run -w access-api start",
"contracts:build": "forge build",
"contracts:test": "forge test",
"contracts:deploy": "forge script contracts/script/Deploy.s.sol --broadcast"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.61.0",
"@typescript-eslint/parser": "^8.61.0",
"eslint": "^10.5.0",
"typescript": "^5.4.0"
}
}