ente/package.json

45 lines
1.1 KiB
JSON
Raw Normal View History

2020-09-09 21:09:51 +00:00
{
2023-04-29 00:29:57 +00:00
"name": "ente-web",
"version": "1.0.0",
"private": true,
2023-05-29 02:06:02 +00:00
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
2023-04-29 00:35:18 +00:00
"albums": "turbo run albums",
"auth": "turbo run auth",
"export": "turbo run export",
"build-analyze": "ANALYZE=true next build",
2023-04-29 00:35:18 +00:00
"start": "turbo run start",
2023-04-29 16:59:00 +00:00
"prepare": "husky install"
},
2023-04-29 15:16:40 +00:00
"dependencies": {},
"devDependencies": {
2023-04-30 08:02:26 +00:00
"eslint": "^8.28.0",
2023-04-29 15:16:40 +00:00
"husky": "^7.0.1",
"lint-staged": "^13.2.3",
2023-04-29 16:00:49 +00:00
"prettier": "2.3.2",
2023-06-10 10:43:49 +00:00
"turbo": "^1.10.3"
},
"standard": {
"parser": "babel-eslint"
},
"lint-staged": {
"apps/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write --ignore-unknown"
],
"packages/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write --ignore-unknown"
],
"**/*.{json,css,scss,md,html,yml,yaml}": [
"prettier --write --ignore-unknown"
]
}
2023-04-29 15:16:40 +00:00
}