forked from polkadot-builders-dao/polkadot-builders-dao
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.38 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
44
45
{
"name": "polkadot-builders-dao",
"version": "0.0.0",
"license": "MIT",
"author": "Polkadot Builders",
"private": true,
"workspaces": [
"contracts",
"web"
],
"scripts": {
"build": "turbo run build",
"compile": "turbo run compile",
"dev": "yarn workspace web dev",
"test": "turbo run test --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"cleanup": "rimraf web/dist frontend/.turbo web/node_modules .yarn/cache .yarn/install-state.gz contracts/.turbo contracts/artifacts contracts/cache contracts/coverage contracts/coverage.json contracts/typechain-types node_modules"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-turbo": "^1.9.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.7",
"prettier-plugin-solidity": "^1.1.3",
"prettier-plugin-tailwindcss": "^0.2.7",
"rimraf": "^4.4.1",
"turbo": "^1.9.3"
},
"engines": {
"node": ">=16.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"react-jazzicon": "^1.0.4",
"web": "workspace:^",
"workspace": "^0.0.1-preview.1"
}
}