-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.44 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
38
39
40
41
42
43
{
"name": "ccamp",
"version": "0.0.1",
"description": "Cross-chain Asset Management Protocol",
"repository": "[email protected]:usherlabs/ccamp.git",
"homepage": "https://usher.so",
"author": "Ryan Soury <[email protected]>, Shuaibu Alexander <[email protected]>",
"license": "GPL-3.0",
"private": true,
"scripts": {
"clean": "del packages/*/node_modules packages/*/dist node_modules",
"build": "npx turbo run build --force",
"format": "prettier --write \"**/*.{js,jsx,mjs,ts,tsx,json,css,scss,md,sol}\"",
"postinstall": "cp -rf ./node_modules/deno-bin ./packages/relay/node_modules"
},
"devDependencies": {
"@turbo/gen": "^1.9.7",
"eslint": "^7.32.0",
"prettier": "^2.5.1",
"turbo": "latest",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@tsconfig/node16": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"del-cli": "^5.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier-plugin-solidity": "^1.1.3"
},
"workspaces": [
"packages/*"
]
}