43 lines
1.2 KiB
JSON
43 lines
1.2 KiB
JSON
{
|
|
"name": "evocalculator.client",
|
|
"version": "2.0.0",
|
|
"private": true,
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"build": "dotenv -e .env turbo run build",
|
|
"clean": "turbo run clean",
|
|
"dev": "dotenv -e .env.local turbo run dev",
|
|
"format": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
|
|
"lint": "dotenv -e .env.local turbo run lint",
|
|
"lint:fix": "dotenv -e .env.local turbo run lint:fix",
|
|
"test": "dotenv -e .env.local turbo run test",
|
|
"prepare": "husky install",
|
|
"precommit": "yarn format && yarn lint:fix && yarn test",
|
|
"graphql:update": "dotenv -e .env.local node ./scripts/graphql-update.js",
|
|
"graphql:codegen": "dotenv -e .env.local node ./scripts/graphql-codegen.js"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"dotenv-cli": "^7.0.0",
|
|
"eslint-config-custom": "*",
|
|
"husky": "^8.0.3",
|
|
"lint-staged": "^13.2.0",
|
|
"prettier": "^2.8.4",
|
|
"tools": "*",
|
|
"turbo": "^1.10.6"
|
|
},
|
|
"packageManager": "yarn@1.22.17",
|
|
"engines": {
|
|
"node": ">=14.0.0",
|
|
"npm": ">=7.0.0"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx}": [
|
|
"eslint --ignore-pattern **/graphql/* --ext js,jsx,ts,tsx --quiet --fix --"
|
|
]
|
|
}
|
|
}
|