-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.64 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
{
"private": true,
"repository": "[email protected]:monax/aspen-sdk.git",
"author": "Silas Davis <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"lint": "prettier '**/*.ts'",
"fix": "yarn fix:all",
"fix:all": "cd $INIT_CWD && yarn fix:eslint && yarn fix:prettier",
"fix:prettier": "prettier --write $INIT_CWD",
"fix:eslint": "eslint --fix $INIT_CWD'/**/*.{ts,tsx}'",
"fix:prettier:args": "cd $INIT_CWD && prettier --write",
"examples:flows": "pnpm -C examples/flows run flows",
"examples:react:test-contract": "pnpm --silent -C examples/flows run react-test-contract >> examples/react/.env.local",
"examples:react": "pnpm -C examples/react dev",
"examples:react:fresh-contract": "pnpm examples:react:test-contract && pnpm examples:react",
"clean": "git clean -fdX --exclude='!credentials.json' --exclude='!providers.json' --exclude='!.idea' --exclude='!.idea/**'",
"clean:dry-run": "pnpm clean -n",
"ci:test": "pnpm install && pnpm build && pnpm test",
"ci:publish": "pnpm install && pnpm build && pnpm run -C sdk publish:public:bump",
"ci:publish:prerelease": "pnpm install && pnpm build && pnpm run -C sdk publish:public:bump:prerelease",
"ci:version": "scripts/version.sh"
},
"devDependencies": {
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.0.0",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-solidity": "^1.1.3"
},
"packageManager": "[email protected]",
"version": "0.0.0"
}