-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.16 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
{
"name": "cleanify-monorepo",
"private": true,
"scripts": {
"test": "dotenv -e .env -- turbo run test",
"build": "dotenv -- turbo build",
"dev": "dotenv -e .env -- turbo dev",
"lint": "turbo lint",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"hardhat:compile": "turbo run compile --scope=contracts",
"hardhat:deploy": "turbo run deploy --scope=contracts",
"hardhat:test": "turbo run test --scope=contracts"
},
"devDependencies": {
"dotenv-cli": "latest",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.2.4",
"turbo": "^1.11.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
]
}