-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 817 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 817 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
{
"name": "filecoin-plus",
"version": "1.0.0",
"private": true,
"repository": "git@github.com:threesigmaxyz/filecoin-plus.git",
"author": "Afonso Oliveira <afonso.oliveira@threesigma.xyz>",
"license": "MIT",
"workspaces": [
"packages/application",
"packages/core"
],
"scripts": {
"application": "npx -w @filecoin-plus/application",
"core": "npx -w @filecoin-plus/core",
"format:check": "prettier --check 'packages/**/*.{js,ts,json}'",
"format:fix": "prettier --write 'packages/**/*.{js,ts,json}'",
"test:unit": "cd packages/application && npm run test:unit run",
"test:e2e": "cd packages/application && npm run test:e2e run"
},
"devDependencies": {
"prettier": "^3.3.3"
},
"dependencies": {
"@octokit/auth-app": "^7.1.1",
"ethers": "^5.8.0"
}
}