-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.12 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.12 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
{
"name": "account-abstraction-starter",
"private": true,
"packageManager": "pnpm@7.13.0",
"repository": {
"type": "git",
"url": "git+https://github.com/ConcaveFi/account-abstraction-starter.git"
},
"author": "ConcaveFi <engineering@concave.lol> (https://github.com/ConcaveFi)",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/ConcaveFi/account-abstraction-starter/issues"
},
"homepage": "https://account-abstraction-starter.vercel.app/",
"scripts": {
"build": "turbo build --filter web",
"dev": "turbo dev --filter web",
"clean:workspaces": "turbo clean",
"clean": "rm -rf node_modules",
"lint": "turbo lint && manypkg check",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"dependencies": {
"@manypkg/cli": "^0.20.0",
"@next/eslint-plugin-next": "^13.3.0",
"eslint-config-next": "^13.3.0",
"eslint-config-turbo": "^1.9.3",
"eslint-plugin-prettier": "^4.2.1",
"next": "^13.3.0",
"prettier": "^2.8.7",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-tailwindcss": "^0.2.7",
"turbo": "^1.9.3"
}
}