forked from bitcashorg/smartsale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.18 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
46
47
48
49
50
{
"name": "smartsale",
"version": "1.0.0",
"description": "bitlauncher Monorepo",
"author": "bitcar.og",
"license": "MIT",
"private": true,
"scripts": {
"build": "turbo build --no-daemon",
"dev": "turbo dev --no-daemon --parallel",
"lint": "turbo lint --no-daemon",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"clean:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +"
},
"devDependencies": {
"@types/bn.js": "^5.1.5",
"@types/node": "latest",
"eslint": "^8.44.0",
"postcss-import": "^16.1.0",
"postcss-nesting": "^12.1.1",
"prettier": "^3.2.5",
"prisma": "latest",
"turbo": "^1.11.2"
},
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"hardhat/*"
],
"nohoist": [
"**/vite",
"**/vite/**",
"**/prisma",
"**/prisma/**",
"**/@prisma/client",
"**/@prisma/client/**"
]
},
"packageManager": "[email protected]",
"dependencies": {
"-": "^0.0.1",
"@types/react": "latest",
"@types/react-dom": "latest",
"@vercel/speed-insights": "^1.0.10",
"react": "latest",
"react-dom": "latest",
"sharp": "^0.33.3"
}
}