forked from SnailyCAD/snaily-cadv4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.07 KB
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
{
"private": true,
"name": "snailycad",
"version": "1.0.0",
"packageManager": "yarn@3.2.0",
"workspaces": [
"packages/**"
],
"scripts": {
"format:quick": "pretty-quick --staged --pattern \"packages/**/*.{js,jsx,ts,tsx,md,css,json}\"",
"format": "prettier --write \"./packages/**/**/*.{js,jsx,ts,tsx,md,css,json}\" --ignore-path .gitignore",
"lint": "yarn run eslint . --ext .ts,.js,.tsx,.jsx,.mjs",
"lint:fix": "yarn run eslint . --ext .ts,.js,.tsx,.jsx,.mjs --fix",
"prepare": "husky install",
"bump-version": "node scripts/bump-version.mjs",
"postinstall": "husky install"
},
"license": "MIT",
"devDependencies": {
"@casper124578/eslint-config": "4.3.0",
"@casper124578/eslint-config-next": "4.3.0",
"@casper124578/eslint-config-react": "4.3.0",
"@typescript-eslint/eslint-plugin": "latest",
"colorette": "2.0.16",
"concurrently": "^7.1.0",
"copy": "^0.3.2",
"dotenv": "^16.0.0",
"eslint": "^8.14.0",
"husky": "^7.0.4",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"turbo": "^1.2.8"
}
}