-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
35 lines (35 loc) · 906 Bytes
/
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
{
"name": "nearblocks",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:check": "turbo run lint:check",
"format": "prettier --config .prettierrc --write --ignore-unknown './**/*'",
"format:check": "prettier --config .prettierrc --check --ignore-unknown './**/*'",
"prepare": "husky install"
},
"dependencies": {},
"devDependencies": {
"eslint-config-custom-nextjs": "*",
"eslint-config-custom-node": "*",
"husky": "8.0.0",
"prettier": "3.0.3",
"prettier-plugin-embed": "0.3.2",
"prettier-plugin-sql": "0.18.0",
"turbo": "^1.13.3",
"wrangler": "^3.86.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
}
}