forked from BountyFiveO/SouthSide_CAD
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.36 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.36 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
35
36
37
38
39
40
{
"private": true,
"name": "snailycad",
"version": "1.52.0",
"packageManager": "yarn@3.2.3",
"workspaces": [
"apps/**",
"packages/**"
],
"scripts": {
"start": "yarn run concurrently \"yarn workspace @snailycad/client start\" \"yarn workspace @snailycad/api generate && yarn workspace @snailycad/api start\"",
"dev": "yarn turbo run watch --parallel",
"format:quick": "pretty-quick --staged --pattern \"(packages|apps)/**/*.{js,jsx,mjs,ts,tsx,md,css,json}\"",
"format": "prettier --write \"./(packages|apps)/**/**/*.{js,jsx,ts,mjs,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": "6.0.0",
"@casper124578/eslint-config-next": "6.0.0",
"@casper124578/eslint-config-react": "6.0.0",
"@typescript-eslint/eslint-plugin": "latest",
"colorette": "2.0.19",
"concurrently": "^7.6.0",
"copy": "^0.3.2",
"dotenv": "^16.0.3",
"eslint": "^8.36.0",
"husky": "^8.0.3",
"prettier": "2.8.6",
"pretty-quick": "^3.1.3",
"turbo": "latest"
},
"engines": {
"node": ">=16.13.0"
}
}