-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 983 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
{
"name": "next-turbo-app",
"packageManager": "pnpm@8.6.0",
"private": true,
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"scripts": {
"initiate": "node index",
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"check-types": "turbo run check-types --concurrency=4",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,scss,css,json,md}\"",
"check-format": "prettier --check \"**/*.{js,ts,tsx,scss,css,json}\"",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"fix-lint": "eslint . --ext ts --ext tsx --ext js --fix",
"fix-all": "npm run fix-lint && npm run format",
"prepare": "husky install"
},
"devDependencies": {
"@turbo/gen": "^1.10.7",
"dotenv": "^16.3.1",
"eslint": "^8.44.0",
"eslint-config-custom": "workspace:*",
"fs-extra": "^11.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"turbo": "^1.10.7"
}
}