forked from FC-InnerCircle-ICD1/icd01-team05_06-commerce-fe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 989 Bytes
/
package.json
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
{
"name": "icd01-team05_06-commerce-fe",
"version": "1.0.0",
"type": "module",
"description": "",
"scripts": {
"dev": "pnpm --parallel run dev",
"build": "pnpm run build:shared && pnpm run build:apps",
"build:shared": "pnpm --filter @commerce/shared build",
"build:apps": "pnpm --filter \"./apps/**\" build",
"lint": "eslint . fil",
"lint:fix": "eslint . --fix",
"prepare": "husky || true"
},
"keywords": [],
"author": "",
"license": "ISC",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"eslint": "^8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tailwindcss": "^3.17.4",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3"
}
}