-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.48 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.48 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"start": "turbo run start",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\" --ignore-path .gitignore",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"type-check": "tsc --noEmit",
"precommit": "lint-staged",
"prepush": "yarn type-check",
"prepare": "husky install",
"test": "turbo run test -- --passWithNoTests",
"test:unit": "jest",
"test:integration": "cypress run",
"test:watch": "jest --watch"
},
"lint-staged": {
"*.ts?(x)": [
"eslint --fix",
"prettier --write"
],
"*.js?(x)": [
"eslint --fix",
"prettier --write"
],
"*.json": [
"prettier --write"
],
"*.scss": [
"prettier --write"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"cypress": "^13.0.0",
"eslint": "^9.4.0",
"husky": "^8.0.0",
"jest": "^29.5.13",
"jest-environment-jsdom": "^29.5.13",
"lint-staged": "^15.2.6",
"prettier": "^3.3.2",
"turbo": "latest",
"typescript": "^5.4.5"
},
"packageManager": "yarn@1.22.22",
"engines": {
"node": ">=20"
},
"name": "17suit-monorepo"
}