forked from Forge-Trade/evmos-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.02 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": "evmos-apps",
"version": "1.0.9",
"license": "SEE LICENSE IN LICENSE",
"author": "Tharsis Labs Ltd.(Evmos)",
"workspaces": [
"apps/*",
"packages/*"
],
"private": true,
"scripts": {
"build:production": "npm run clear-cache && NEXT_PUBLIC_EVMOS_APP_ENV=production turbo run build --force --no-cache",
"build": "npm run clear-cache && turbo run build --force --no-cache",
"dev": "turbo run dev",
"lint": "turbo run lint",
"clean": "turbo run clean",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:coverage": "turbo run test:coverage",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install",
"clear-cache": "sh ./clear-cache.sh"
},
"devDependencies": {
"husky": "^8.0.3",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.11",
"turbo": "latest"
},
"packageManager": "yarn@1.22.17",
"browserslist": [
"last 3 chrome version",
"last 3 firefox version",
"last 3 safari version"
]
}